public static enum ElasticConfigEvent.Type extends java.lang.Enum<ElasticConfigEvent.Type>
Enum Constant and Description |
---|
NODE_ADDED
Signifies that a prop configuration instance was added.
|
NODE_REMOVED
Signifies that prop configuration instance was removed.
|
NODE_UPDATED
Signifies that prop configuration instance was updated.
|
SUBTREE_ADDED
Signifies that a prop configuration subtree was added.
|
SUBTREE_REMOVED
Signifies that prop configuration subtree was removed.
|
SUBTREE_UPDATED
Signifies that prop configuration subtree was updated.
|
Modifier and Type | Method and Description |
---|---|
static ElasticConfigEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ElasticConfigEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElasticConfigEvent.Type NODE_ADDED
public static final ElasticConfigEvent.Type NODE_UPDATED
public static final ElasticConfigEvent.Type NODE_REMOVED
public static final ElasticConfigEvent.Type SUBTREE_ADDED
public static final ElasticConfigEvent.Type SUBTREE_UPDATED
public static final ElasticConfigEvent.Type SUBTREE_REMOVED
public static ElasticConfigEvent.Type[] values()
for (ElasticConfigEvent.Type c : ElasticConfigEvent.Type.values()) System.out.println(c);
public static ElasticConfigEvent.Type 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