org.semanticweb.owlapi.model
Enum ClassExpressionType

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

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

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


Enum Constant Summary
DATA_ALL_VALUES_FROM
           
DATA_EXACT_CARDINALITY
           
DATA_HAS_VALUE
           
DATA_MAX_CARDINALITY
           
DATA_MIN_CARDINALITY
           
DATA_SOME_VALUES_FROM
           
OBJECT_ALL_VALUES_FROM
           
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_VALUES_FROM
           
OBJECT_UNION_OF
           
OWL_CLASS
           
 
Method Summary
 java.lang.String getName()
           
 java.lang.String toString()
           
static ClassExpressionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ClassExpressionType[] 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

OWL_CLASS

public static final ClassExpressionType OWL_CLASS

OBJECT_SOME_VALUES_FROM

public static final ClassExpressionType OBJECT_SOME_VALUES_FROM

OBJECT_ALL_VALUES_FROM

public static final ClassExpressionType OBJECT_ALL_VALUES_FROM

OBJECT_MIN_CARDINALITY

public static final ClassExpressionType OBJECT_MIN_CARDINALITY

OBJECT_MAX_CARDINALITY

public static final ClassExpressionType OBJECT_MAX_CARDINALITY

OBJECT_EXACT_CARDINALITY

public static final ClassExpressionType OBJECT_EXACT_CARDINALITY

OBJECT_HAS_VALUE

public static final ClassExpressionType OBJECT_HAS_VALUE

OBJECT_HAS_SELF

public static final ClassExpressionType OBJECT_HAS_SELF

DATA_SOME_VALUES_FROM

public static final ClassExpressionType DATA_SOME_VALUES_FROM

DATA_ALL_VALUES_FROM

public static final ClassExpressionType DATA_ALL_VALUES_FROM

DATA_MIN_CARDINALITY

public static final ClassExpressionType DATA_MIN_CARDINALITY

DATA_MAX_CARDINALITY

public static final ClassExpressionType DATA_MAX_CARDINALITY

DATA_EXACT_CARDINALITY

public static final ClassExpressionType DATA_EXACT_CARDINALITY

DATA_HAS_VALUE

public static final ClassExpressionType DATA_HAS_VALUE

OBJECT_INTERSETION_OF

public static final ClassExpressionType OBJECT_INTERSETION_OF

OBJECT_UNION_OF

public static final ClassExpressionType OBJECT_UNION_OF

OBJECT_COMPLEMENT_OF

public static final ClassExpressionType OBJECT_COMPLEMENT_OF

OBJECT_ONE_OF

public static final ClassExpressionType OBJECT_ONE_OF
Method Detail

values

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

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

valueOf

public static ClassExpressionType 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()

toString

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