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