org.semanticweb.HermiT.model
Enum DLClause.ClauseType
java.lang.Object
java.lang.Enum<DLClause.ClauseType>
org.semanticweb.HermiT.model.DLClause.ClauseType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DLClause.ClauseType>
- Enclosing class:
- DLClause
public static enum DLClause.ClauseType
- extends java.lang.Enum<DLClause.ClauseType>
Method Summary |
static DLClause.ClauseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DLClause.ClauseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
CONCEPT_INCLUSION
public static final DLClause.ClauseType CONCEPT_INCLUSION
DATA_RANGE_INCLUSION
public static final DLClause.ClauseType DATA_RANGE_INCLUSION
INVERSE_OBJECT_PROPERTY_INCLUSION
public static final DLClause.ClauseType INVERSE_OBJECT_PROPERTY_INCLUSION
OBJECT_PROPERTY_INCLUSION
public static final DLClause.ClauseType OBJECT_PROPERTY_INCLUSION
DATA_PROPERTY_INCLUSION
public static final DLClause.ClauseType DATA_PROPERTY_INCLUSION
ASYMMETRY
public static final DLClause.ClauseType ASYMMETRY
REFLEXIVITY
public static final DLClause.ClauseType REFLEXIVITY
IRREFLEXIVITY
public static final DLClause.ClauseType IRREFLEXIVITY
DISJOINT_OBJECT_PROPERTIES
public static final DLClause.ClauseType DISJOINT_OBJECT_PROPERTIES
DISJOINT_DATA_PROPERTIES
public static final DLClause.ClauseType DISJOINT_DATA_PROPERTIES
HAS_KEY
public static final DLClause.ClauseType HAS_KEY
SWRL_RULE
public static final DLClause.ClauseType SWRL_RULE
GRAPH_RULE
public static final DLClause.ClauseType GRAPH_RULE
GRAPH_START_CLAUSE
public static final DLClause.ClauseType GRAPH_START_CLAUSE
OTHER
public static final DLClause.ClauseType OTHER
values
public static DLClause.ClauseType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (DLClause.ClauseType c : DLClause.ClauseType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DLClause.ClauseType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null