|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ExpressionTree.Operation>
de.bsvrz.pua.prot.util.ExpressionTree.Operation
public static enum ExpressionTree.Operation
Im Ausdruck mögliche Operationen.
Enum Constant Summary | |
---|---|
add
Plus |
|
and
Und |
|
conc
String Konkatenation |
|
div
Division |
|
divInt
Integer Division |
|
equal
Gleich |
|
greater
Größer |
|
greaterEqual
Größer gleich |
|
invalid
Ungültige Operation |
|
less
Kleiner |
|
lessEqual
Kleiner gleich |
|
modulo
Modula |
|
mult
Multiplikation |
|
neg
Negation |
|
not
Not |
|
notEqual
Ungleich |
|
or
Oder |
|
subtract
Minus |
Method Summary | |
---|---|
static ExpressionTree.Operation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExpressionTree.Operation[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ExpressionTree.Operation neg
public static final ExpressionTree.Operation not
public static final ExpressionTree.Operation mult
public static final ExpressionTree.Operation div
public static final ExpressionTree.Operation divInt
public static final ExpressionTree.Operation modulo
public static final ExpressionTree.Operation add
public static final ExpressionTree.Operation subtract
public static final ExpressionTree.Operation conc
public static final ExpressionTree.Operation less
public static final ExpressionTree.Operation lessEqual
public static final ExpressionTree.Operation greater
public static final ExpressionTree.Operation greaterEqual
public static final ExpressionTree.Operation equal
public static final ExpressionTree.Operation notEqual
public static final ExpressionTree.Operation and
public static final ExpressionTree.Operation or
public static final ExpressionTree.Operation invalid
Method Detail |
---|
public static final ExpressionTree.Operation[] values()
for(ExpressionTree.Operation c : ExpressionTree.Operation.values()) System.out.println(c);
public static ExpressionTree.Operation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |