goldengate.common.database.data
Enum AbstractDbData.UpdatedInfo

java.lang.Object
  extended by java.lang.Enum<AbstractDbData.UpdatedInfo>
      extended by goldengate.common.database.data.AbstractDbData.UpdatedInfo
All Implemented Interfaces:
Serializable, Comparable<AbstractDbData.UpdatedInfo>
Enclosing class:
AbstractDbData

public static enum AbstractDbData.UpdatedInfo
extends Enum<AbstractDbData.UpdatedInfo>

UpdatedInfo status

Author:
Frederic Bregier

Enum Constant Summary
DONE
          All done run status
INERROR
          In error run status
INTERRUPTED
          Interrupted status (stop or cancel)
NOTUPDATED
          Not updated run status
RUNNING
          Running status
TOSUBMIT
          Updated run status meaning ready to be submitted
UNKNOWN
          Unknown run status
 
Method Summary
static AbstractDbData.UpdatedInfo valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AbstractDbData.UpdatedInfo[] 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

UNKNOWN

public static final AbstractDbData.UpdatedInfo UNKNOWN
Unknown run status


NOTUPDATED

public static final AbstractDbData.UpdatedInfo NOTUPDATED
Not updated run status


INTERRUPTED

public static final AbstractDbData.UpdatedInfo INTERRUPTED
Interrupted status (stop or cancel)


TOSUBMIT

public static final AbstractDbData.UpdatedInfo TOSUBMIT
Updated run status meaning ready to be submitted


INERROR

public static final AbstractDbData.UpdatedInfo INERROR
In error run status


RUNNING

public static final AbstractDbData.UpdatedInfo RUNNING
Running status


DONE

public static final AbstractDbData.UpdatedInfo DONE
All done run status

Method Detail

values

public static AbstractDbData.UpdatedInfo[] 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 (AbstractDbData.UpdatedInfo c : AbstractDbData.UpdatedInfo.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AbstractDbData.UpdatedInfo 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 © 2009-2012 Frederic Bregier. All Rights Reserved.