public enum InferenceType extends java.lang.Enum<InferenceType>
Enum Constant and Description |
---|
CLASS_ASSERTIONS
Denotes the computation of the direct types of individuals for each individual in the
signature of the imports closure of the root ontology.
|
CLASS_HIERARCHY
Denotes the computation of the class hierarchy.
|
DATA_PROPERTY_ASSERTIONS
Denotes the computation of relationships between individuals and data property values for
each individual in the signature of the imports closure of the root ontology.
|
DATA_PROPERTY_HIERARCHY
Denotes the computation of the data property hierarchy.
|
DIFFERENT_INDIVIDUALS
Denotes the computation of sets of individuals that are different from each individual
in the signature of the imports closure of the root ontology.
|
DISJOINT_CLASSES
Denotes the computation of sets of classes that are disjoint for each class in the
signature of the imports closure of the root ontology.
|
OBJECT_PROPERTY_ASSERTIONS
Denotes the computation of relationships between individuals in the signature of the
imports closure of the root ontology.
|
OBJECT_PROPERTY_HIERARCHY
Denotes the computation of the object property hierarchy.
|
SAME_INDIVIDUAL
Denotes the computation of individuals that are interpreted as the same object for each
individual in the imports closure of the root ontology.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static InferenceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InferenceType CLASS_HIERARCHY
public static final InferenceType OBJECT_PROPERTY_HIERARCHY
public static final InferenceType DATA_PROPERTY_HIERARCHY
public static final InferenceType CLASS_ASSERTIONS
public static final InferenceType OBJECT_PROPERTY_ASSERTIONS
public static final InferenceType DATA_PROPERTY_ASSERTIONS
public static final InferenceType SAME_INDIVIDUAL
public static final InferenceType DIFFERENT_INDIVIDUALS
public static final InferenceType DISJOINT_CLASSES
public static InferenceType[] values()
for (InferenceType c : InferenceType.values()) System.out.println(c);
public static InferenceType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<InferenceType>