public static enum Concern.Priority extends Enum<Concern.Priority>
| Enum Constant and Description |
|---|
HIGH |
HIGHER |
HIGHEST |
LOW |
LOWER |
LOWEST |
NORMAL |
| Modifier and Type | Method and Description |
|---|---|
static Concern.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Concern.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Concern.Priority LOWEST
public static final Concern.Priority LOWER
public static final Concern.Priority LOW
public static final Concern.Priority NORMAL
public static final Concern.Priority HIGH
public static final Concern.Priority HIGHER
public static final Concern.Priority HIGHEST
public static Concern.Priority[] values()
for (Concern.Priority c : Concern.Priority.values()) System.out.println(c);
public static Concern.Priority 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 © 2012-2014. All Rights Reserved.