org.semanticweb.owl.model
Enum DescriptionType

java.lang.Object
  extended by java.lang.Enum<DescriptionType>
      extended by org.semanticweb.owl.model.DescriptionType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DescriptionType>

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

Author: Matthew Horridge
The University Of Manchester
Information Management Group
Date: 08-Sep-2008


Enum Constant Summary
DATA_ALL
           
DATA_EXACT_CARDINALITY
           
DATA_HAS_VALUE
           
DATA_MAX_CARDINALITY
           
DATA_MIN_CARDINALITY
           
DATA_SOME
           
OBJECT_ALL
           
OBJECT_COMPLEMENT_OF
           
OBJECT_EXACT_CARDINALITY
           
OBJECT_HAS_SELF
           
OBJECT_HAS_VALUE
           
OBJECT_INTERSETION_OF
           
OBJECT_MAX_CARDINALITY
           
OBJECT_MIN_CARDINALITY
           
OBJECT_ONE_OF
           
OBJECT_SOME
           
OBJECT_UNION_OF
           
OWL_CLASS
           
 
Method Summary
 java.lang.String getName()
           
 java.lang.String toString()
           
static DescriptionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DescriptionType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OWL_CLASS

public static final DescriptionType OWL_CLASS

OBJECT_SOME

public static final DescriptionType OBJECT_SOME

OBJECT_ALL

public static final DescriptionType OBJECT_ALL

OBJECT_MIN_CARDINALITY

public static final DescriptionType OBJECT_MIN_CARDINALITY

OBJECT_MAX_CARDINALITY

public static final DescriptionType OBJECT_MAX_CARDINALITY

OBJECT_EXACT_CARDINALITY

public static final DescriptionType OBJECT_EXACT_CARDINALITY

OBJECT_HAS_VALUE

public static final DescriptionType OBJECT_HAS_VALUE

OBJECT_HAS_SELF

public static final DescriptionType OBJECT_HAS_SELF

DATA_SOME

public static final DescriptionType DATA_SOME

DATA_ALL

public static final DescriptionType DATA_ALL

DATA_MIN_CARDINALITY

public static final DescriptionType DATA_MIN_CARDINALITY

DATA_MAX_CARDINALITY

public static final DescriptionType DATA_MAX_CARDINALITY

DATA_EXACT_CARDINALITY

public static final DescriptionType DATA_EXACT_CARDINALITY

DATA_HAS_VALUE

public static final DescriptionType DATA_HAS_VALUE

OBJECT_INTERSETION_OF

public static final DescriptionType OBJECT_INTERSETION_OF

OBJECT_UNION_OF

public static final DescriptionType OBJECT_UNION_OF

OBJECT_COMPLEMENT_OF

public static final DescriptionType OBJECT_COMPLEMENT_OF

OBJECT_ONE_OF

public static final DescriptionType OBJECT_ONE_OF
Method Detail

values

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

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

valueOf

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

getName

public java.lang.String getName()

toString

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