public enum ConfigurationAreaTime extends Enum<ConfigurationAreaTime>
| Enum Constant and Description |
|---|
GLOBAL_ACTIVATION_TIME |
LOCAL_ACTIVATION_TIME |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ConfigurationAreaTime |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationAreaTime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationAreaTime LOCAL_ACTIVATION_TIME
public static final ConfigurationAreaTime GLOBAL_ACTIVATION_TIME
private final String _name
public static ConfigurationAreaTime[] values()
for (ConfigurationAreaTime c : ConfigurationAreaTime.values()) System.out.println(c);
public static ConfigurationAreaTime 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 toString()
toString in class Enum<ConfigurationAreaTime>