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

Represents the different types of OWL 2 class expressions.


Enum Constant Summary
DATA_ALL_VALUES_FROM
          Represents OWLDataAllValuesFrom
DATA_EXACT_CARDINALITY
          Represents OWLDataExactCardinality
DATA_HAS_VALUE
          Represents OWLDataHasValue
DATA_MAX_CARDINALITY
          Represents OWLDataMaxCardinality
DATA_MIN_CARDINALITY
          Represents OWLDataMinCardinality
DATA_SOME_VALUES_FROM
          Represents OWLDataSomeValuesFrom
OBJECT_ALL_VALUES_FROM
          Represents OWLObjectAllValuesFrom
OBJECT_COMPLEMENT_OF
          Represents OWLObjectComplementOf
OBJECT_EXACT_CARDINALITY
          Represents OWLObjectExactCardinality
OBJECT_HAS_SELF
          Represents OWLObjectHasSelf
OBJECT_HAS_VALUE
          Represents OWLObjectHasValue
OBJECT_INTERSECTION_OF
          Represents OWLObjectIntersectionOf
OBJECT_MAX_CARDINALITY
          Represents OWLObjectMaxCardinality
OBJECT_MIN_CARDINALITY
          Represents OWLObjectMinCardinality
OBJECT_ONE_OF
          Represents OWLObjectComplementOf
OBJECT_SOME_VALUES_FROM
          Represents OWLObjectSomeValuesFrom
OBJECT_UNION_OF
          Represents OWLObjectUnionOf
OWL_CLASS
          Represents OWLClass
 
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
Represents OWLClass


OBJECT_SOME_VALUES_FROM

public static final ClassExpressionType OBJECT_SOME_VALUES_FROM
Represents OWLObjectSomeValuesFrom


OBJECT_ALL_VALUES_FROM

public static final ClassExpressionType OBJECT_ALL_VALUES_FROM
Represents OWLObjectAllValuesFrom


OBJECT_MIN_CARDINALITY

public static final ClassExpressionType OBJECT_MIN_CARDINALITY
Represents OWLObjectMinCardinality


OBJECT_MAX_CARDINALITY

public static final ClassExpressionType OBJECT_MAX_CARDINALITY
Represents OWLObjectMaxCardinality


OBJECT_EXACT_CARDINALITY

public static final ClassExpressionType OBJECT_EXACT_CARDINALITY
Represents OWLObjectExactCardinality


OBJECT_HAS_VALUE

public static final ClassExpressionType OBJECT_HAS_VALUE
Represents OWLObjectHasValue


OBJECT_HAS_SELF

public static final ClassExpressionType OBJECT_HAS_SELF
Represents OWLObjectHasSelf


DATA_SOME_VALUES_FROM

public static final ClassExpressionType DATA_SOME_VALUES_FROM
Represents OWLDataSomeValuesFrom


DATA_ALL_VALUES_FROM

public static final ClassExpressionType DATA_ALL_VALUES_FROM
Represents OWLDataAllValuesFrom


DATA_MIN_CARDINALITY

public static final ClassExpressionType DATA_MIN_CARDINALITY
Represents OWLDataMinCardinality


DATA_MAX_CARDINALITY

public static final ClassExpressionType DATA_MAX_CARDINALITY
Represents OWLDataMaxCardinality


DATA_EXACT_CARDINALITY

public static final ClassExpressionType DATA_EXACT_CARDINALITY
Represents OWLDataExactCardinality


DATA_HAS_VALUE

public static final ClassExpressionType DATA_HAS_VALUE
Represents OWLDataHasValue


OBJECT_INTERSECTION_OF

public static final ClassExpressionType OBJECT_INTERSECTION_OF
Represents OWLObjectIntersectionOf


OBJECT_UNION_OF

public static final ClassExpressionType OBJECT_UNION_OF
Represents OWLObjectUnionOf


OBJECT_COMPLEMENT_OF

public static final ClassExpressionType OBJECT_COMPLEMENT_OF
Represents OWLObjectComplementOf


OBJECT_ONE_OF

public static final ClassExpressionType OBJECT_ONE_OF
Represents OWLObjectComplementOf

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>