Uses of Class
com.sas.lsaf.execution.job.JobParameter.ParameterType
-
Packages that use JobParameter.ParameterType Package Description com.sas.lsaf.execution.job Provides the classes needed to create, update, and get jobs as well as execute them and get their status. -
-
Uses of JobParameter.ParameterType in com.sas.lsaf.execution.job
Methods in com.sas.lsaf.execution.job that return JobParameter.ParameterType Modifier and Type Method Description JobParameter.ParameterType
JobParameter. getType()
Gets the type of the parameter.JobParameter.ParameterType
ParameterValue. getType()
Gets the type of the parameter.static JobParameter.ParameterType
JobParameter.ParameterType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JobParameter.ParameterType[]
JobParameter.ParameterType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.sas.lsaf.execution.job with parameters of type JobParameter.ParameterType Modifier and Type Method Description void
JobParameter. setType(JobParameter.ParameterType type)
Sets the type of the parameter.void
ParameterValue. setType(JobParameter.ParameterType type)
Sets the type of the parameter.Constructors in com.sas.lsaf.execution.job with parameters of type JobParameter.ParameterType Constructor Description JobParameter(java.lang.String name, java.lang.String label, JobParameter.ParameterType type)
The constructor.JobParameter(java.lang.String name, java.lang.String label, JobParameter.ParameterType type, java.io.Serializable defaultValue)
The constructor.ParameterValue(java.lang.String name, java.io.Serializable value, JobParameter.ParameterType type)
The constructor.
-