public static enum ChangeSet.RunStatus extends 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(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(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.