public enum JobClassifier extends Enum<JobClassifier>
| Enum Constant and Description |
|---|
POSTPROCESSING |
PREPROCESSING |
PROCESSING |
VALIDATION |
| Modifier and Type | Method and Description |
|---|---|
static JobClassifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobClassifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobClassifier PREPROCESSING
public static final JobClassifier PROCESSING
public static final JobClassifier POSTPROCESSING
public static final JobClassifier VALIDATION
public static JobClassifier[] values()
for (JobClassifier c : JobClassifier.values()) System.out.println(c);
public static JobClassifier 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 © 2015. All Rights Reserved.