liquibase.changelog
Enum ChangeSet.ExecType

java.lang.Object
  extended by java.lang.Enum<ChangeSet.ExecType>
      extended by liquibase.changelog.ChangeSet.ExecType
All Implemented Interfaces:
Serializable, Comparable<ChangeSet.ExecType>
Enclosing class:
ChangeSet

public static enum ChangeSet.ExecType
extends Enum<ChangeSet.ExecType>


Enum Constant Summary
EXECUTED
           
FAILED
           
MARK_RAN
           
RERAN
           
SKIPPED
           
 
Field Summary
 boolean ran
           
 boolean ranBefore
           
 String value
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Field Detail

value

public final String value

ranBefore

public final boolean ranBefore

ran

public final boolean ran
Method Detail

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.