public static enum VersionUpgrade.UpgradeType extends Enum<VersionUpgrade.UpgradeType>
| Enum Constant and Description |
|---|
REMOVE_ELEMENT |
REPLACE_ELEMENT |
| Modifier and Type | Method and Description |
|---|---|
static VersionUpgrade.UpgradeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VersionUpgrade.UpgradeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VersionUpgrade.UpgradeType REMOVE_ELEMENT
public static final VersionUpgrade.UpgradeType REPLACE_ELEMENT
public static VersionUpgrade.UpgradeType[] values()
for (VersionUpgrade.UpgradeType c : VersionUpgrade.UpgradeType.values()) System.out.println(c);
public static VersionUpgrade.UpgradeType 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 © 2019. All rights reserved.