public enum JobSubType extends Enum<JobSubType>
| Enum Constant and Description |
|---|
ENCRYPTION |
SCALING |
| Modifier and Type | Method and Description |
|---|---|
static JobSubType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobSubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobSubType SCALING
public static final JobSubType ENCRYPTION
public static JobSubType[] values()
for (JobSubType c : JobSubType.values()) System.out.println(c);
public static JobSubType 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 © 2022 The Apache Software Foundation. All rights reserved.