public enum DLVersionNumberIncrease extends Enum<DLVersionNumberIncrease>
Modifier and Type | Method and Description |
---|---|
static DLVersionNumberIncrease |
fromMajorVersion(boolean majorVersion) |
static DLVersionNumberIncrease |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DLVersionNumberIncrease |
valueOf(String name,
DLVersionNumberIncrease defaultValue) |
static DLVersionNumberIncrease[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DLVersionNumberIncrease AUTOMATIC
public static final DLVersionNumberIncrease MAJOR
public static final DLVersionNumberIncrease MINOR
public static final DLVersionNumberIncrease NONE
public static DLVersionNumberIncrease[] values()
for (DLVersionNumberIncrease c : DLVersionNumberIncrease.values()) System.out.println(c);
public static DLVersionNumberIncrease 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 nullpublic static DLVersionNumberIncrease fromMajorVersion(boolean majorVersion)
public static DLVersionNumberIncrease valueOf(String name, DLVersionNumberIncrease defaultValue)