public static enum ConfigDef.Importance extends Enum<ConfigDef.Importance>
| Modifier and Type | Method and Description |
|---|---|
static ConfigDef.Importance | valueOf(String name)Returns the enum constant of this type with the specified name. |
static ConfigDef.Importance[] | values()Returns an array containing the constants of this enum type, in the order they are declared. |
public static final ConfigDef.Importance HIGH
public static final ConfigDef.Importance MEDIUM
public static final ConfigDef.Importance LOW
public static ConfigDef.Importance[] values()
for (ConfigDef.Importance c : ConfigDef.Importance.values()) System.out.println(c);
public static ConfigDef.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 null