public static enum ChangeSet.ExecType extends Enum<ChangeSet.ExecType>
Enum Constant and Description |
---|
EXECUTED |
FAILED |
MARK_RAN |
RERAN |
SKIPPED |
Modifier and Type | Field and Description |
---|---|
boolean |
ran |
boolean |
ranBefore |
String |
value |
Modifier and Type | Method and Description |
---|---|
static ChangeSet.ExecType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeSet.ExecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeSet.ExecType EXECUTED
public static final ChangeSet.ExecType FAILED
public static final ChangeSet.ExecType SKIPPED
public static final ChangeSet.ExecType RERAN
public static final ChangeSet.ExecType MARK_RAN
public final String value
public final boolean ranBefore
public final boolean ran
public static ChangeSet.ExecType[] values()
for (ChangeSet.ExecType c : ChangeSet.ExecType.values()) System.out.println(c);
public static ChangeSet.ExecType 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 © 2023 Liquibase.org. All rights reserved.