liquibase.changelog
Enum ChangeSet.RunStatus
java.lang.Object
java.lang.Enum<ChangeSet.RunStatus>
liquibase.changelog.ChangeSet.RunStatus
- All Implemented Interfaces:
- Serializable, Comparable<ChangeSet.RunStatus>
- Enclosing class:
- ChangeSet
public static enum ChangeSet.RunStatus
- extends Enum<ChangeSet.RunStatus>
NOT_RAN
public static final ChangeSet.RunStatus NOT_RAN
ALREADY_RAN
public static final ChangeSet.RunStatus ALREADY_RAN
RUN_AGAIN
public static final ChangeSet.RunStatus RUN_AGAIN
MARK_RAN
public static final ChangeSet.RunStatus MARK_RAN
INVALID_MD5SUM
public static final ChangeSet.RunStatus INVALID_MD5SUM
values
public static ChangeSet.RunStatus[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ChangeSet.RunStatus c : ChangeSet.RunStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ChangeSet.RunStatus valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2015 Liquibase.org. All rights reserved.