public enum ParameterType extends Enum<ParameterType>
Enum Constant and Description |
---|
CHARACTER
The parameter specifies a character value.
|
CHARACTER_MASKED
The parameter specifies a masked character value.
|
DATE
The parameter specifies a date value.
|
FILE
The parameter specifies a file.
|
FOLDER
The parameter specifies a folder.
|
NUMERIC
The parameter specifies a numeric value.
|
Modifier and Type | Method and Description |
---|---|
static ParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterType FOLDER
public static final ParameterType FILE
public static final ParameterType NUMERIC
public static final ParameterType DATE
public static final ParameterType CHARACTER
public static final ParameterType CHARACTER_MASKED
public static ParameterType[] values()
for (ParameterType c : ParameterType.values()) System.out.println(c);
public static ParameterType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright (c) 2017, SAS Institute Inc., Cary, NC, USA