org.semanticweb.owlapi.vocab
Enum OWL2Datatype.Category

java.lang.Object
  extended by java.lang.Enum<OWL2Datatype.Category>
      extended by org.semanticweb.owlapi.vocab.OWL2Datatype.Category
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OWL2Datatype.Category>
Enclosing class:
OWL2Datatype

public static enum OWL2Datatype.Category
extends java.lang.Enum<OWL2Datatype.Category>


Enum Constant Summary
BINARY
           
BOOLEAN
           
NUMBER
           
STRING_WITH_LANGUAGE_TAG
           
STRING_WITHOUT_LANGUAGE_TAG
           
TIME
           
URI
           
 
Method Summary
 java.util.Set<OWLFacet> getFacets()
           
 java.lang.String getName()
           
static OWL2Datatype.Category valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OWL2Datatype.Category[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NUMBER

public static final OWL2Datatype.Category NUMBER

STRING_WITH_LANGUAGE_TAG

public static final OWL2Datatype.Category STRING_WITH_LANGUAGE_TAG

STRING_WITHOUT_LANGUAGE_TAG

public static final OWL2Datatype.Category STRING_WITHOUT_LANGUAGE_TAG

BOOLEAN

public static final OWL2Datatype.Category BOOLEAN

BINARY

public static final OWL2Datatype.Category BINARY

URI

public static final OWL2Datatype.Category URI

TIME

public static final OWL2Datatype.Category TIME
Method Detail

values

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

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

valueOf

public static OWL2Datatype.Category 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

getName

public java.lang.String getName()

getFacets

public java.util.Set<OWLFacet> getFacets()