- All Implemented Interfaces:
Serializable,Comparable<ConfigChangeType>,java.lang.constant.Constable
Types of changes on config content.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionaction()One of 'creating', 'modifying' or 'deleting'.One of 'Created', 'Modified' or 'Deleted'.One of 'Creating', 'Modifying' or 'Deleting'.One of 'created', 'modified' or 'deleted'.static ConfigChangeTypeReturns 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.
-
Enum Constant Details
-
CREATED
The config entry has just been created. -
MODIFIED
The config entry has been modified from a previously known state. -
DELETED
The config entry has been deleted.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
lowercase
One of 'created', 'modified' or 'deleted'.- Returns:
- The config change name as lowercase.
-
capitalized
One of 'Created', 'Modified' or 'Deleted'.- Returns:
- The config change name, capitalized, for e.g. where needed first in sentence.
-
action
One of 'creating', 'modifying' or 'deleting'.- Returns:
- The config action (as lowercase).
-
capitalizedAction
One of 'Creating', 'Modifying' or 'Deleting'.- Returns:
- The config action, capitalized, for e.g. where needed first in sentence.
-