Package de.bsvrz.pua.prot.util
Enum ExpressionLeaf.LeafType
- java.lang.Object
-
- java.lang.Enum<ExpressionLeaf.LeafType>
-
- de.bsvrz.pua.prot.util.ExpressionLeaf.LeafType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ExpressionLeaf.LeafType>
,java.lang.constant.Constable
- Enclosing class:
- ExpressionLeaf
public static enum ExpressionLeaf.LeafType extends java.lang.Enum<ExpressionLeaf.LeafType>
Typ, der in diesem Blatt gespeichert wird.
-
-
Method Summary
Modifier and Type Method Description static ExpressionLeaf.LeafType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ExpressionLeaf.LeafType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final ExpressionLeaf.LeafType STRING
Wert ist ein String
-
DOUBLE
public static final ExpressionLeaf.LeafType DOUBLE
Wert ist ein Double
-
LONG
public static final ExpressionLeaf.LeafType LONG
Wert ist ein Long
-
ATTRIBUTE
public static final ExpressionLeaf.LeafType ATTRIBUTE
Wert ist ein Attribut
-
BOOL
public static final ExpressionLeaf.LeafType BOOL
Wert ist ein Bool
-
FUNCTION
public static final ExpressionLeaf.LeafType FUNCTION
Wert ist eine Funktion
-
-
Method Detail
-
values
public static ExpressionLeaf.LeafType[] 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 ExpressionLeaf.LeafType 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
-
-