Enum ParameterValueType
- java.lang.Object
-
- java.lang.Enum<ParameterValueType>
-
- com.github.toolarium.processing.unit.dto.ParameterValueType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ParameterValueType>
public enum ParameterValueType extends java.lang.Enum<ParameterValueType>
Defines the parameter value type.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ParameterValueTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ParameterValueType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN
public static final ParameterValueType BOOLEAN
BOOLEAN
-
CHAR
public static final ParameterValueType CHAR
CHAR
-
STRING
public static final ParameterValueType STRING
STRING
-
SHORT
public static final ParameterValueType SHORT
SHORT
-
INTEGER
public static final ParameterValueType INTEGER
INTEGER
-
LONG
public static final ParameterValueType LONG
LONG
-
FLOAT
public static final ParameterValueType FLOAT
FLOAT
-
DOUBLE
public static final ParameterValueType DOUBLE
DOUBLE
-
DATE
public static final ParameterValueType DATE
DATE
-
TIME
public static final ParameterValueType TIME
TIME
-
DATETIME
public static final ParameterValueType DATETIME
DATETIME
-
REGEXP
public static final ParameterValueType REGEXP
REGEXP: regular expression
-
-
Method Detail
-
values
public static ParameterValueType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ParameterValueType c : ParameterValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParameterValueType 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
-
-