|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OperatorKind>
se.cambio.cds.gdl.model.expression.OperatorKind
public enum OperatorKind
Enum Constant Summary | |
---|---|
ADDITION
Arithmetic operators |
|
AND
Logical operators |
|
ASSIGNMENT
Assignment operator |
|
DIVISION
|
|
EQUALITY
Relational operators |
|
EXPONENT
|
|
FOR_ALL
Conditional operators |
|
GREATER_THAN
|
|
GREATER_THAN_OR_EQUAL
|
|
INEQUAL
|
|
IS_A
Terminological reasoning |
|
IS_NOT_A
|
|
LESS_THAN
|
|
LESS_THAN_OR_EQUAL
|
|
MULTIPLICATION
|
|
NOT
|
|
OR
|
|
SUBSTRATION
|
Method Summary | |
---|---|
String |
getName()
|
String |
getSymbol()
|
String |
toString()
|
static OperatorKind |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static OperatorKind[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OperatorKind ADDITION
public static final OperatorKind SUBSTRATION
public static final OperatorKind MULTIPLICATION
public static final OperatorKind DIVISION
public static final OperatorKind EXPONENT
public static final OperatorKind AND
public static final OperatorKind OR
public static final OperatorKind NOT
public static final OperatorKind EQUALITY
public static final OperatorKind INEQUAL
public static final OperatorKind LESS_THAN
public static final OperatorKind LESS_THAN_OR_EQUAL
public static final OperatorKind GREATER_THAN
public static final OperatorKind GREATER_THAN_OR_EQUAL
public static final OperatorKind ASSIGNMENT
public static final OperatorKind IS_A
public static final OperatorKind IS_NOT_A
public static final OperatorKind FOR_ALL
Method Detail |
---|
public static OperatorKind[] values()
for (OperatorKind c : OperatorKind.values()) System.out.println(c);
public static OperatorKind valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getName()
public String getSymbol()
public String toString()
toString
in class Enum<OperatorKind>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |