public enum ParameterBagDataType extends java.lang.Enum<ParameterBagDataType>
| Enum Constant and Description |
|---|
Boolean
This data type is either 'true' or 'false'.
|
Numeric
This data type is a numeric value.
|
String
This data type is a string.
|
| Modifier and Type | Method and Description |
|---|---|
static ParameterBagDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParameterBagDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterBagDataType String
public static final ParameterBagDataType Boolean
public static final ParameterBagDataType Numeric
public static ParameterBagDataType[] values()
for (ParameterBagDataType c : ParameterBagDataType.values()) System.out.println(c);
public static ParameterBagDataType 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