@Deprecated public static enum ResultValue.ResultValueOperation extends java.lang.Enum<ResultValue.ResultValueOperation>
Enum Constant and Description |
---|
DIV
Deprecated.
Division
|
MINUS
Deprecated.
Subtraktion
|
MULT
Deprecated.
Multiplikation
|
PLUS
Deprecated.
Addition
|
Modifier and Type | Method and Description |
---|---|
static ResultValue.ResultValueOperation |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ResultValue.ResultValueOperation[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultValue.ResultValueOperation PLUS
public static final ResultValue.ResultValueOperation MULT
public static final ResultValue.ResultValueOperation DIV
public static final ResultValue.ResultValueOperation MINUS
public static ResultValue.ResultValueOperation[] values()
for (ResultValue.ResultValueOperation c : ResultValue.ResultValueOperation.values()) System.out.println(c);
public static ResultValue.ResultValueOperation 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 null