@FunctionalInterface public interface AnnotationPropertyProvider
| Modifier and Type | Method and Description |
|---|---|
default OWLAnnotationProperty |
getOWLAnnotationProperty(HasIRI iri)
Gets an instance of
OWLAnnotationProperty with the same IRI as
the input. |
OWLAnnotationProperty |
getOWLAnnotationProperty(IRI iri)
Gets an instance of
OWLAnnotationProperty that has the specified
IRI. |
default OWLAnnotationProperty |
getOWLAnnotationProperty(String iri)
Gets an instance of
OWLAnnotationProperty that has the specified
IRI. |
default OWLAnnotationProperty |
getOWLAnnotationProperty(String abbreviatedIRI,
PrefixManager prefixManager)
Gets an OWLAnnotationProperty that has an IRI that is obtained by
expanding an abbreviated name using an appropriate prefix mapping.
|
default OWLAnnotationProperty |
getOWLAnnotationProperty(String namespace,
String remainder)
Gets an instance of
OWLAnnotationProperty that has the specified
IRI. |
OWLAnnotationProperty getOWLAnnotationProperty(IRI iri)
OWLAnnotationProperty that has the specified
IRI.iri - The IRI.OWLAnnotationProperty that has the specified IRI.default OWLAnnotationProperty getOWLAnnotationProperty(HasIRI iri)
OWLAnnotationProperty with the same IRI as
the input.iri - The HasIRI instance.OWLAnnotationProperty that has iri.getIRI() as IRI.default OWLAnnotationProperty getOWLAnnotationProperty(String iri)
OWLAnnotationProperty that has the specified
IRI. This is the same as
getOWLAnnotationProperty(IRI.create(iri)).iri - The IRI string.OWLAnnotationProperty that has the specified IRI.default OWLAnnotationProperty getOWLAnnotationProperty(String namespace, @Nullable String remainder)
OWLAnnotationProperty that has the specified
IRI. This is the same as
getOWLAnnotationProperty(IRI.create(namespace, remainder)).namespace - The IRI namespace.remainder - optional remainder or local nameOWLAnnotationProperty that has the specified IRI.default OWLAnnotationProperty getOWLAnnotationProperty(String abbreviatedIRI, PrefixManager prefixManager)
abbreviatedIRI - The abbreviated IRI, which is of the form PREFIX_NAME:RC, where
PREFIX_NAME may be the empty string (the default prefix). Note
that abbreviated IRIs always contain a colon as a delimiter, even
if the prefix name is the empty string.prefixManager - The prefix manager that is responsible for mapping prefix names to
prefix IRIs.OWLRuntimeException - if the prefix name in the specified abbreviated IRI does not have
a mapping to a prefix in the specified prefix manager.Copyright © 2017 The University of Manchester. All Rights Reserved.