public static enum Upgrader.UpgradePhase extends java.lang.Enum<Upgrader.UpgradePhase>
| Enum Constant and Description |
|---|
POST_SCHEMA_UPGRADE |
SCHEMA_UPGRADE |
| Modifier and Type | Method and Description |
|---|---|
static Upgrader.UpgradePhase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Upgrader.UpgradePhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Upgrader.UpgradePhase SCHEMA_UPGRADE
public static final Upgrader.UpgradePhase POST_SCHEMA_UPGRADE
public static Upgrader.UpgradePhase[] values()
for (Upgrader.UpgradePhase c : Upgrader.UpgradePhase.values()) System.out.println(c);
public static Upgrader.UpgradePhase 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 nullCopyright © 2024. All Rights Reserved.