uk.ac.manchester.cs.owl.dlsyntax
Enum DLSyntax
java.lang.Object
java.lang.Enum<DLSyntax>
uk.ac.manchester.cs.owl.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
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 are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
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
values
public static DLSyntax[] 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 (DLSyntax c : DLSyntax.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are 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
java.lang.NullPointerException
- if the argument is null
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<DLSyntax>