@OpenApiAll public enum ModificationKind extends java.lang.Enum<ModificationKind>
| Enum Constant and Description |
|---|
ADDED
Value added.
|
REMOVED
Value removed.
|
REPLACED
Value replaced.
|
| Modifier and Type | Method and Description |
|---|---|
static ModificationKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModificationKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModificationKind ADDED
public static final ModificationKind REMOVED
public static final ModificationKind REPLACED
public static ModificationKind[] values()
for (ModificationKind c : ModificationKind.values()) System.out.println(c);
public static ModificationKind 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