de.uulm.ecs.ai.owlapi.krssrenderer
Enum KRSS2Vocabulary

java.lang.Object
  extended by java.lang.Enum<KRSS2Vocabulary>
      extended by de.uulm.ecs.ai.owlapi.krssrenderer.KRSS2Vocabulary
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<KRSS2Vocabulary>

public enum KRSS2Vocabulary
extends java.lang.Enum<KRSS2Vocabulary>

Vocabulary of KRSS2 syntax. Author: Olaf Noppens
Ulm University
Institute of Artificial Intelligence


Enum Constant Summary
ALL
           
AND
           
AT_LEAST
           
AT_MOST
           
COMPOSE
           
DEFINE_CONCEPT
           
DEFINE_INDIVIDUAL
           
DEFINE_PRIMITIVE_CONCEPT
           
DEFINE_PRIMITIVE_ROLE
           
DEFINE_ROLE
           
DISJOINT
           
DISJOINT_ROLES
           
DISTINCT
           
DOMAIN
           
DOMAIN_ATTR
           
EQUIVALENT
           
EXACTLY
           
IMPLIES
           
IMPLIES_ROLE
           
INSTANCE
           
INV
           
INVERSE
           
INVERSE_ATTR
           
LEFTIDENTITY_ATTR
           
NIL
           
NOT
           
ONE_OF
           
OR
           
PARENT_ATTR
           
PARENTS_ATTR
           
RANGE_ATTR
           
REFLEXIVE_ATTR
           
RELATED
           
RIGHTIDENTITY_ATTR
           
ROLE_INCLUSTION
           
ROLES_EQUIVALENT
           
SOME
           
SUBROLE
           
SYMMETRIC_ATTR
           
TRANSITIVE_ATTR
           
TRUE
           
 
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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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

COMPOSE

public static final KRSS2Vocabulary COMPOSE

DEFINE_CONCEPT

public static final KRSS2Vocabulary DEFINE_CONCEPT

DEFINE_INDIVIDUAL

public static final KRSS2Vocabulary DEFINE_INDIVIDUAL

DEFINE_PRIMITIVE_CONCEPT

public static final KRSS2Vocabulary DEFINE_PRIMITIVE_CONCEPT

DEFINE_PRIMITIVE_ROLE

public static final KRSS2Vocabulary DEFINE_PRIMITIVE_ROLE

DEFINE_ROLE

public static final KRSS2Vocabulary DEFINE_ROLE

DISJOINT

public static final KRSS2Vocabulary DISJOINT

DISJOINT_ROLES

public static final KRSS2Vocabulary DISJOINT_ROLES

DISTINCT

public static final KRSS2Vocabulary DISTINCT

DOMAIN

public static final KRSS2Vocabulary DOMAIN

DOMAIN_ATTR

public static final KRSS2Vocabulary DOMAIN_ATTR

EQUIVALENT

public static final KRSS2Vocabulary EQUIVALENT

EXACTLY

public static final KRSS2Vocabulary EXACTLY

IMPLIES

public static final KRSS2Vocabulary IMPLIES

IMPLIES_ROLE

public static final KRSS2Vocabulary IMPLIES_ROLE

INSTANCE

public static final KRSS2Vocabulary INSTANCE

INV

public static final KRSS2Vocabulary INV

INVERSE

public static final KRSS2Vocabulary INVERSE

INVERSE_ATTR

public static final KRSS2Vocabulary INVERSE_ATTR

LEFTIDENTITY_ATTR

public static final KRSS2Vocabulary LEFTIDENTITY_ATTR

NIL

public static final KRSS2Vocabulary NIL

NOT

public static final KRSS2Vocabulary NOT

OR

public static final KRSS2Vocabulary OR

ONE_OF

public static final KRSS2Vocabulary ONE_OF

PARENTS_ATTR

public static final KRSS2Vocabulary PARENTS_ATTR

PARENT_ATTR

public static final KRSS2Vocabulary PARENT_ATTR

RANGE_ATTR

public static final KRSS2Vocabulary RANGE_ATTR

REFLEXIVE_ATTR

public static final KRSS2Vocabulary REFLEXIVE_ATTR

RELATED

public static final KRSS2Vocabulary RELATED

RIGHTIDENTITY_ATTR

public static final KRSS2Vocabulary RIGHTIDENTITY_ATTR

ROLES_EQUIVALENT

public static final KRSS2Vocabulary ROLES_EQUIVALENT

ROLE_INCLUSTION

public static final KRSS2Vocabulary ROLE_INCLUSTION

SOME

public static final KRSS2Vocabulary SOME

SUBROLE

public static final KRSS2Vocabulary SUBROLE

SYMMETRIC_ATTR

public static final KRSS2Vocabulary SYMMETRIC_ATTR

TRUE

public static final KRSS2Vocabulary TRUE

TRANSITIVE_ATTR

public static final KRSS2Vocabulary TRANSITIVE_ATTR
Method Detail

values

public static final KRSS2Vocabulary[] values()
Returns an array containing the constants of this enum type, in the order they're 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're 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

getShortName

public java.lang.String getShortName()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<KRSS2Vocabulary>