liquibase.changelog
Enum ChangeSet.ExecType
java.lang.Object
java.lang.Enum<ChangeSet.ExecType>
liquibase.changelog.ChangeSet.ExecType
- All Implemented Interfaces:
- Serializable, Comparable<ChangeSet.ExecType>
- Enclosing class:
- ChangeSet
public static enum ChangeSet.ExecType
- extends Enum<ChangeSet.ExecType>
EXECUTED
public static final ChangeSet.ExecType EXECUTED
FAILED
public static final ChangeSet.ExecType FAILED
SKIPPED
public static final ChangeSet.ExecType SKIPPED
RERAN
public static final ChangeSet.ExecType RERAN
MARK_RAN
public static final ChangeSet.ExecType MARK_RAN
value
public final String value
ranBefore
public final boolean ranBefore
ran
public final boolean ran
values
public static ChangeSet.ExecType[] 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.ExecType c : ChangeSet.ExecType.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.ExecType 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 © 2016 Liquibase.org. All rights reserved.