public enum ConfigEvent extends java.lang.Enum<ConfigEvent>
Enum Constant and Description |
---|
ACTIVATED |
ALIASED |
CHANGED |
COMPLETED |
CREATED |
DEACTIVATED |
TERMINATED |
UNALIASED |
Modifier and Type | Method and Description |
---|---|
static ConfigEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfigEvent[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ConfigEvent CREATED
public static final ConfigEvent COMPLETED
public static final ConfigEvent ACTIVATED
public static final ConfigEvent DEACTIVATED
public static final ConfigEvent TERMINATED
public static final ConfigEvent ALIASED
public static final ConfigEvent UNALIASED
public static final ConfigEvent CHANGED
public static ConfigEvent[] values()
for (ConfigEvent c : ConfigEvent.values()) System.out.println(c);
public static ConfigEvent valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null