Package de.bsvrz.pua.prot.util
Enum ResultValue.ResultValueOperation
- java.lang.Object
-
- java.lang.Enum<ResultValue.ResultValueOperation>
-
- de.bsvrz.pua.prot.util.ResultValue.ResultValueOperation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ResultValue.ResultValueOperation>
,java.lang.constant.Constable
- Enclosing class:
- ResultValue
@Deprecated public static enum ResultValue.ResultValueOperation extends java.lang.Enum<ResultValue.ResultValueOperation>
Deprecated.Operationen die auf ResultValue Objekten durchgeführt werden können.
-
-
Method Summary
Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
PLUS
public static final ResultValue.ResultValueOperation PLUS
Deprecated.Addition
-
MULT
public static final ResultValue.ResultValueOperation MULT
Deprecated.Multiplikation
-
DIV
public static final ResultValue.ResultValueOperation DIV
Deprecated.Division
-
MINUS
public static final ResultValue.ResultValueOperation MINUS
Deprecated.Subtraktion
-
-
Method Detail
-
values
public static ResultValue.ResultValueOperation[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResultValue.ResultValueOperation valueOf(java.lang.String name)
Deprecated.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 namejava.lang.NullPointerException
- if the argument is null
-
-