Gets an instance of OWLClass that has an IRI composed of the
provided namespace and remainder. This is the same as calling
getOWLClass(IRI.create(namespace, remainder)). No prefix
resolution is attempted.
Parameters:
namespace - The IRI namespace
remainder - optional remainder or local name (can be null)
Gets an OWLClass that has an IRI that is obtained by expanding an
abbreviated name using an appropriate prefix mapping. See
The
OWL 2 Structural Specification for more details.
Parameters:
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.
Returns:
An OWLClass that has the IRI obtained by expanding the specified abbreviated IRI
using the specified prefix manager. For example, suppose "m:Cat" was specified as the
abbreviated IRI, the prefix manager would be used to obtain the IRI prefix for the "m:"
prefix name, this prefix would then be concatenated with "Cat" to obtain the full IRI which
would be the IRI of the OWLClass obtained by this method.
Throws:
OWLRuntimeException - if the prefix name in the specified abbreviated IRI does not have
a mapping to a prefix in the specified prefix manager.