public enum DataRangeType extends java.lang.Enum<DataRangeType> implements java.io.Serializable
Enum Constant and Description |
---|
DATA_COMPLEMENT_OF
Represents
OWLDataComplementOf |
DATA_INTERSECTION_OF
Represents
OWLDataIntersectionOf |
DATA_ONE_OF
Represents
OWLDataOneOf |
DATA_UNION_OF
Represents
OWLDataUnionOf |
DATATYPE
Represents
OWLDatatype |
DATATYPE_RESTRICTION
Represents
OWLDatatypeRestriction |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName() |
static DataRangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataRangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRangeType DATATYPE
OWLDatatype
public static final DataRangeType DATA_ONE_OF
OWLDataOneOf
public static final DataRangeType DATATYPE_RESTRICTION
OWLDatatypeRestriction
public static final DataRangeType DATA_COMPLEMENT_OF
OWLDataComplementOf
public static final DataRangeType DATA_UNION_OF
OWLDataUnionOf
public static final DataRangeType DATA_INTERSECTION_OF
OWLDataIntersectionOf
public static DataRangeType[] values()
for (DataRangeType c : DataRangeType.values()) System.out.println(c);
public static DataRangeType 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 getName()