org.semanticweb.owlapi.util
Enum DLExpressivityChecker.Construct

java.lang.Object
  extended by java.lang.Enum<DLExpressivityChecker.Construct>
      extended by org.semanticweb.owlapi.util.DLExpressivityChecker.Construct
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DLExpressivityChecker.Construct>
Enclosing class:
DLExpressivityChecker

public static enum DLExpressivityChecker.Construct
extends java.lang.Enum<DLExpressivityChecker.Construct>


Enum Constant Summary
AL
           
C
           
D
           
E
           
EL
           
ELPLUSPLUS
           
F
           
H
           
I
           
N
           
O
           
Q
           
R
           
S
           
TRAN
           
U
           
 
Method Summary
 java.lang.String toString()
           
static DLExpressivityChecker.Construct valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DLExpressivityChecker.Construct[] 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

AL

public static final DLExpressivityChecker.Construct AL

U

public static final DLExpressivityChecker.Construct U

C

public static final DLExpressivityChecker.Construct C

E

public static final DLExpressivityChecker.Construct E

N

public static final DLExpressivityChecker.Construct N

Q

public static final DLExpressivityChecker.Construct Q

H

public static final DLExpressivityChecker.Construct H

I

public static final DLExpressivityChecker.Construct I

O

public static final DLExpressivityChecker.Construct O

F

public static final DLExpressivityChecker.Construct F

TRAN

public static final DLExpressivityChecker.Construct TRAN

D

public static final DLExpressivityChecker.Construct D

R

public static final DLExpressivityChecker.Construct R

S

public static final DLExpressivityChecker.Construct S

EL

public static final DLExpressivityChecker.Construct EL

ELPLUSPLUS

public static final DLExpressivityChecker.Construct ELPLUSPLUS
Method Detail

values

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

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

valueOf

public static DLExpressivityChecker.Construct 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

toString

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