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