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

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

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

Author: Olaf Noppens
Ulm University
Institute of Artificial Intelligence


Enum Constant Summary
ALL
           
AND
           
AT_LEAST
           
AT_MOST
           
DEFINE_CONCEPT
           
DEFINE_PRIMITIVE_CONCEPT
           
DEFINE_PRIMITIVE_ROLE
           
DEFINE_ROLE
           
DISJOINT
           
DISTINCT
           
DOMAIN
           
EQUAL
           
EXACTLY
           
IMPLIES
           
INSTANCE
           
INVERSE
           
NIL
           
NOT
           
OR
           
RANGE
           
RELATED
           
SOME
           
SYMMETRIC
           
TOP
           
TRANSITIVE
           
TRUE
           
 
Method Summary
 java.lang.String getShortName()
           
 java.lang.String toString()
           
static KRSSVocabulary valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static KRSSVocabulary[] 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 KRSSVocabulary ALL

AND

public static final KRSSVocabulary AND

AT_LEAST

public static final KRSSVocabulary AT_LEAST

AT_MOST

public static final KRSSVocabulary AT_MOST

DEFINE_CONCEPT

public static final KRSSVocabulary DEFINE_CONCEPT

DEFINE_PRIMITIVE_CONCEPT

public static final KRSSVocabulary DEFINE_PRIMITIVE_CONCEPT

DEFINE_PRIMITIVE_ROLE

public static final KRSSVocabulary DEFINE_PRIMITIVE_ROLE

DEFINE_ROLE

public static final KRSSVocabulary DEFINE_ROLE

DISTINCT

public static final KRSSVocabulary DISTINCT

DISJOINT

public static final KRSSVocabulary DISJOINT

DOMAIN

public static final KRSSVocabulary DOMAIN

EQUAL

public static final KRSSVocabulary EQUAL

EXACTLY

public static final KRSSVocabulary EXACTLY

IMPLIES

public static final KRSSVocabulary IMPLIES

INSTANCE

public static final KRSSVocabulary INSTANCE

INVERSE

public static final KRSSVocabulary INVERSE

NIL

public static final KRSSVocabulary NIL

NOT

public static final KRSSVocabulary NOT

OR

public static final KRSSVocabulary OR

RANGE

public static final KRSSVocabulary RANGE

RELATED

public static final KRSSVocabulary RELATED

SOME

public static final KRSSVocabulary SOME

SYMMETRIC

public static final KRSSVocabulary SYMMETRIC

TRUE

public static final KRSSVocabulary TRUE

TOP

public static final KRSSVocabulary TOP

TRANSITIVE

public static final KRSSVocabulary TRANSITIVE
Method Detail

values

public static final KRSSVocabulary[] 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(KRSSVocabulary c : KRSSVocabulary.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static KRSSVocabulary 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<KRSSVocabulary>