liquibase.changelog
public static enum ChangeSet.RunStatus extends java.lang.Enum<ChangeSet.RunStatus>
Enum Constant and Description |
---|
ALREADY_RAN |
INVALID_MD5SUM |
MARK_RAN |
NOT_RAN |
RUN_AGAIN |
Modifier and Type | Method and Description |
---|---|
static ChangeSet.RunStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeSet.RunStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeSet.RunStatus NOT_RAN
public static final ChangeSet.RunStatus ALREADY_RAN
public static final ChangeSet.RunStatus RUN_AGAIN
public static final ChangeSet.RunStatus MARK_RAN
public static final ChangeSet.RunStatus INVALID_MD5SUM
public static ChangeSet.RunStatus[] values()
for (ChangeSet.RunStatus c : ChangeSet.RunStatus.values()) System.out.println(c);
public static ChangeSet.RunStatus 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 null