public enum UpgradeFrom extends Enum<UpgradeFrom>
| Enum Constant and Description |
|---|
UPGRADE_FROM_0100 |
UPGRADE_FROM_0101 |
UPGRADE_FROM_0102 |
UPGRADE_FROM_0110 |
UPGRADE_FROM_10 |
UPGRADE_FROM_11 |
| Modifier and Type | Method and Description |
|---|---|
static UpgradeFrom |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpgradeFrom[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpgradeFrom UPGRADE_FROM_0100
public static final UpgradeFrom UPGRADE_FROM_0101
public static final UpgradeFrom UPGRADE_FROM_0102
public static final UpgradeFrom UPGRADE_FROM_0110
public static final UpgradeFrom UPGRADE_FROM_10
public static final UpgradeFrom UPGRADE_FROM_11
public final String version
public static UpgradeFrom[] values()
for (UpgradeFrom c : UpgradeFrom.values()) System.out.println(c);
public static UpgradeFrom 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 nullCopyright © 2021. All rights reserved.