de.uulm.ecs.ai.owl.krssrenderer
Enum KRSS2Vocabulary
java.lang.Object
java.lang.Enum<KRSS2Vocabulary>
de.uulm.ecs.ai.owl.krssrenderer.KRSS2Vocabulary
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<KRSS2Vocabulary>
public enum KRSS2Vocabulary
- extends java.lang.Enum<KRSS2Vocabulary>
Vocabulary of KRSS2 syntax.
Method Summary |
java.lang.String |
getShortName()
|
java.lang.String |
toString()
|
static KRSS2Vocabulary |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static KRSS2Vocabulary[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ALL
public static final KRSS2Vocabulary ALL
AND
public static final KRSS2Vocabulary AND
AT_LEAST
public static final KRSS2Vocabulary AT_LEAST
AT_MOST
public static final KRSS2Vocabulary AT_MOST
DEFINE_CONCEPT
public static final KRSS2Vocabulary DEFINE_CONCEPT
DEFINE_PRIMITIVE_CONCEPT
public static final KRSS2Vocabulary DEFINE_PRIMITIVE_CONCEPT
DEFINE_PRIMITIVE_ROLE
public static final KRSS2Vocabulary DEFINE_PRIMITIVE_ROLE
DISJOINT
public static final KRSS2Vocabulary DISJOINT
DOMAIN
public static final KRSS2Vocabulary DOMAIN
DESTINCT
public static final KRSS2Vocabulary DESTINCT
EQUIVALENT
public static final KRSS2Vocabulary EQUIVALENT
EXACTLY
public static final KRSS2Vocabulary EXACTLY
IMPLIES
public static final KRSS2Vocabulary IMPLIES
INSTANCE
public static final KRSS2Vocabulary INSTANCE
INVERSE
public static final KRSS2Vocabulary INVERSE
NIL
public static final KRSS2Vocabulary NIL
NOT
public static final KRSS2Vocabulary NOT
OR
public static final KRSS2Vocabulary OR
PARENTS
public static final KRSS2Vocabulary PARENTS
RANGE
public static final KRSS2Vocabulary RANGE
RELATED
public static final KRSS2Vocabulary RELATED
SOME
public static final KRSS2Vocabulary SOME
SUBROLE
public static final KRSS2Vocabulary SUBROLE
SYMMETRIC
public static final KRSS2Vocabulary SYMMETRIC
TRUE
public static final KRSS2Vocabulary TRUE
TRANSITIVE
public static final KRSS2Vocabulary TRANSITIVE
values
public static KRSS2Vocabulary[] 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 (KRSS2Vocabulary c : KRSS2Vocabulary.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static KRSS2Vocabulary 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
getShortName
public java.lang.String getShortName()
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<KRSS2Vocabulary>