public enum AllowedValueType extends java.lang.Enum<AllowedValueType>
Enum Constant and Description |
---|
Continuous
This literal means that the value stored by an Entry must be within the
range of values specified by the allowedValues array for that Entry.
|
Discrete
This literal means that the Value stored by an Entry must equal one of
the values stored in the allowedValues array for that Entry.
|
File
This literal means the Entry is used in a form for specifying some sort
of file (such as an input file).
|
Undefined |
Modifier and Type | Method and Description |
---|---|
static AllowedValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AllowedValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AllowedValueType Discrete
public static final AllowedValueType Continuous
public static final AllowedValueType File
public static final AllowedValueType Undefined
public static AllowedValueType[] values()
for (AllowedValueType c : AllowedValueType.values()) System.out.println(c);
public static AllowedValueType 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