public enum DLVersionNumberIncrease extends java.lang.Enum<DLVersionNumberIncrease>
| Modifier and Type | Method and Description |
|---|---|
static DLVersionNumberIncrease |
fromMajorVersion(boolean majorVersion) |
static DLVersionNumberIncrease |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DLVersionNumberIncrease |
valueOf(java.lang.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(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 nullpublic static DLVersionNumberIncrease fromMajorVersion(boolean majorVersion)
public static DLVersionNumberIncrease valueOf(java.lang.String name, DLVersionNumberIncrease defaultValue)