@PublicAPI public enum JobType extends Enum<JobType> implements Serializable
Enum Constant and Description |
---|
PARAMETER_SWEEPING
Tasks can be executed one by one or all at the same time but
every task represents the same native or java task.
|
TASKSFLOW
Tasks flow with dependences.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static JobType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobType PARAMETER_SWEEPING
public static final JobType TASKSFLOW
public static JobType[] values()
for (JobType c : JobType.values()) System.out.println(c);
public static JobType 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 nullpublic String toString()
toString
in class Enum<JobType>
Enum.toString()