voldemort.store.routed
Enum Pipeline.Event

java.lang.Object
  extended by java.lang.Enum<Pipeline.Event>
      extended by voldemort.store.routed.Pipeline.Event
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Pipeline.Event>
Enclosing class:
Pipeline

public static enum Pipeline.Event
extends java.lang.Enum<Pipeline.Event>


Enum Constant Summary
ABORTED
           
COMPLETED
           
CONFIGURED
           
ERROR
           
HANDOFF_FINISHED
           
INSUFFICIENT_SUCCESSES
           
INSUFFICIENT_ZONES
           
MASTER_DETERMINED
           
RESPONSES_RECEIVED
           
STARTED
           
 
Method Summary
static Pipeline.Event valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Pipeline.Event[] 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

STARTED

public static final Pipeline.Event STARTED

CONFIGURED

public static final Pipeline.Event CONFIGURED

COMPLETED

public static final Pipeline.Event COMPLETED

INSUFFICIENT_SUCCESSES

public static final Pipeline.Event INSUFFICIENT_SUCCESSES

INSUFFICIENT_ZONES

public static final Pipeline.Event INSUFFICIENT_ZONES

RESPONSES_RECEIVED

public static final Pipeline.Event RESPONSES_RECEIVED

ERROR

public static final Pipeline.Event ERROR

MASTER_DETERMINED

public static final Pipeline.Event MASTER_DETERMINED

ABORTED

public static final Pipeline.Event ABORTED

HANDOFF_FINISHED

public static final Pipeline.Event HANDOFF_FINISHED
Method Detail

values

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

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

valueOf

public static Pipeline.Event valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Jay Kreps, Roshan Sumbaly, Alex Feinberg, Bhupesh Bansal, Lei Gao, Chinmay Soman, Vinoth Chandar, Zhongjie Wu