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