public static enum JobParameter.ParameterType extends Enum<JobParameter.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 JobParameter.ParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobParameter.ParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobParameter.ParameterType FOLDER
public static final JobParameter.ParameterType FILE
public static final JobParameter.ParameterType NUMERIC
public static final JobParameter.ParameterType DATE
public static final JobParameter.ParameterType CHARACTER
public static final JobParameter.ParameterType CHARACTER_MASKED
public static JobParameter.ParameterType[] values()
for (JobParameter.ParameterType c : JobParameter.ParameterType.values()) System.out.println(c);
public static JobParameter.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 null<i>Copyright (c) 2021, SAS Institute Inc., Cary, NC, USA</i>