@InterfaceAudience.Public @InterfaceStability.Evolving public enum JobPriority extends Enum<JobPriority>
| Enum Constant and Description | 
|---|
DEFAULT  | 
HIGH  | 
LOW  | 
NORMAL  | 
UNDEFINED_PRIORITY  | 
VERY_HIGH  | 
VERY_LOW  | 
| Modifier and Type | Method and Description | 
|---|---|
static JobPriority | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static JobPriority[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final JobPriority VERY_HIGH
public static final JobPriority HIGH
public static final JobPriority NORMAL
public static final JobPriority LOW
public static final JobPriority VERY_LOW
public static final JobPriority DEFAULT
public static final JobPriority UNDEFINED_PRIORITY
public static JobPriority[] values()
for (JobPriority c : JobPriority.values()) System.out.println(c);
public static JobPriority 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 Apache Software Foundation. All rights reserved.