uk.ac.manchester.cs.owlapi.dlsyntax
Enum DLSyntax

java.lang.Object
  extended by java.lang.Enum<DLSyntax>
      extended by uk.ac.manchester.cs.owlapi.dlsyntax.DLSyntax
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DLSyntax>

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

Author: Matthew Horridge
The University Of Manchester
Bio-Health Informatics Group
Date: 10-Feb-2008


Enum Constant Summary
AND
           
BOTTOM
           
COMMA
           
COMP
           
DISJOINT_WITH
           
EQUAL
           
EQUIVALENT_TO
           
EXISTS
           
FORALL
           
IMPLIES
           
IN
           
INVERSE
           
MAX
           
MIN
           
NOT
           
NOT_EQUAL
           
OR
           
SELF
           
SUBCLASS
           
TOP
           
WEDGE
           
 
Method Summary
 java.lang.String toString()
           
static DLSyntax valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DLSyntax[] 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

SUBCLASS

public static final DLSyntax SUBCLASS

EQUIVALENT_TO

public static final DLSyntax EQUIVALENT_TO

NOT

public static final DLSyntax NOT

DISJOINT_WITH

public static final DLSyntax DISJOINT_WITH

EXISTS

public static final DLSyntax EXISTS

FORALL

public static final DLSyntax FORALL

IN

public static final DLSyntax IN

MIN

public static final DLSyntax MIN

EQUAL

public static final DLSyntax EQUAL

NOT_EQUAL

public static final DLSyntax NOT_EQUAL

MAX

public static final DLSyntax MAX

INVERSE

public static final DLSyntax INVERSE

AND

public static final DLSyntax AND

TOP

public static final DLSyntax TOP

BOTTOM

public static final DLSyntax BOTTOM

OR

public static final DLSyntax OR

COMP

public static final DLSyntax COMP

WEDGE

public static final DLSyntax WEDGE

IMPLIES

public static final DLSyntax IMPLIES

COMMA

public static final DLSyntax COMMA

SELF

public static final DLSyntax SELF
Method Detail

values

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

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

valueOf

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