liquibase.changelog
Enum ChangeSet.RunStatus

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

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


Enum Constant Summary
ALREADY_RAN
           
INVALID_MD5SUM
           
MARK_RAN
           
NOT_RAN
           
RUN_AGAIN
           
 
Method Summary
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.
 
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

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

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.