Enum Constant and Description |
---|
ADDED |
CHANGED |
IGNORED |
MAJOR |
MICRO |
MINOR |
REMOVED |
UNCHANGED |
Modifier and Type | Method and Description |
---|---|
static Delta |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Delta[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Delta IGNORED
public static final Delta UNCHANGED
public static final Delta CHANGED
public static final Delta MICRO
public static final Delta MINOR
public static final Delta MAJOR
public static final Delta REMOVED
public static final Delta ADDED
public static Delta[] values()
for (Delta c : Delta.values()) System.out.println(c);
public static Delta 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