public enum MigrationStep extends Enum<MigrationStep>
| Enum Constant and Description |
|---|
APPLICATION_FIRST |
FORCE_APPLICATION |
FORCE_INTERFACE |
| Modifier and Type | Method and Description |
|---|---|
static MigrationStep |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MigrationStep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MigrationStep FORCE_INTERFACE
public static final MigrationStep APPLICATION_FIRST
public static final MigrationStep FORCE_APPLICATION
public static MigrationStep[] values()
for (MigrationStep c : MigrationStep.values()) System.out.println(c);
public static MigrationStep 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 © 2011–2022 The Apache Software Foundation. All rights reserved.