public enum Importance extends Enum<Importance>
| Modifier and Type | Method and Description |
|---|---|
static Importance |
get(String importance) |
String |
getImportance() |
String |
toString() |
static Importance |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Importance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Importance REQUIRED
public static final Importance OPTIONAL
public static Importance[] values()
for (Importance c : Importance.values()) System.out.println(c);
public static Importance 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 nullpublic String getImportance()
public String toString()
toString in class Enum<Importance>public static Importance get(String importance)
Apache Camel