public enum ConfigChangeType extends Enum<ConfigChangeType>
| Enum Constant and Description |
|---|
ADDED
A config is created.
|
DELETED
A config is deleted.
|
MODIFIED
A config is updated.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigChangeType ADDED
public static final ConfigChangeType MODIFIED
public static final ConfigChangeType DELETED
public static ConfigChangeType[] values()
for (ConfigChangeType c : ConfigChangeType.values()) System.out.println(c);
public static ConfigChangeType 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 nullCopyright © 2011–2020 The Apache Software Foundation. All rights reserved.