public static enum ExpressionTree.Operation extends java.lang.Enum<ExpressionTree.Operation>
Enum Constant and Description |
---|
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
|
Modifier and Type | Field and Description |
---|---|
private boolean |
_binary |
private java.lang.String |
_symbol |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getSymbol() |
boolean |
isBinary() |
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 are declared.
|
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
public static 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 namejava.lang.NullPointerException
- if the argument is nullpublic boolean isBinary()
public java.lang.String getSymbol()