Package de.bsvrz.pua.prot.util
Enum ExpressionResult.ResultType
- java.lang.Object
-
- java.lang.Enum<ExpressionResult.ResultType>
-
- de.bsvrz.pua.prot.util.ExpressionResult.ResultType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ExpressionResult.ResultType>
,java.lang.constant.Constable
- Enclosing class:
- ExpressionResult
public static enum ExpressionResult.ResultType extends java.lang.Enum<ExpressionResult.ResultType>
Typ der Werte inExpressionResult
.
-
-
Method Summary
Modifier and Type Method Description static ExpressionResult.ResultType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ExpressionResult.ResultType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOL
public static final ExpressionResult.ResultType BOOL
Bool
-
STRING
public static final ExpressionResult.ResultType STRING
String
-
LONG
public static final ExpressionResult.ResultType LONG
Long
-
DOUBLE
public static final ExpressionResult.ResultType DOUBLE
Double
-
STATUS
public static final ExpressionResult.ResultType STATUS
Zustand
-
ERROR
public static final ExpressionResult.ResultType ERROR
Ungültiger Wert
-
NONE
public static final ExpressionResult.ResultType NONE
Kein Wert hinterlegt
-
NO_CHANGE
public static final ExpressionResult.ResultType NO_CHANGE
Bei Zustandsprotokollen mit NoChange-Kennzeichnung pro Zelle: Keine Änderung zum vorherigen Datensatz
-
-
Method Detail
-
values
public static ExpressionResult.ResultType[] values()
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 ExpressionResult.ResultType valueOf(java.lang.String name)
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
-
-