voldemort.server
Enum RequestRoutingType

java.lang.Object
  extended by java.lang.Enum<RequestRoutingType>
      extended by voldemort.server.RequestRoutingType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RequestRoutingType>

public enum RequestRoutingType
extends java.lang.Enum<RequestRoutingType>


Enum Constant Summary
IGNORE_CHECKS
           
NORMAL
           
ROUTED
           
 
Method Summary
static RequestRoutingType getRequestRoutingType(boolean should_route, boolean ignore_checks)
          Ignore checks takes precedence over should_route and force it to be local store.
static RequestRoutingType getRequestRoutingType(int routingCode)
          ignore checks takes precedence over should_route and force it to be local store.
 int getRoutingTypeCode()
           
static RequestRoutingType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RequestRoutingType[] 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

NORMAL

public static final RequestRoutingType NORMAL

ROUTED

public static final RequestRoutingType ROUTED

IGNORE_CHECKS

public static final RequestRoutingType IGNORE_CHECKS
Method Detail

values

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

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

valueOf

public static RequestRoutingType 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

getRequestRoutingType

public static RequestRoutingType getRequestRoutingType(boolean should_route,
                                                       boolean ignore_checks)
Ignore checks takes precedence over should_route and force it to be local store.

Parameters:
should_route - Requests which are forcefully routed
ignore_checks - Ignore the checks for metadata
Returns:
The enum corresponding to the flags

getRoutingTypeCode

public int getRoutingTypeCode()

getRequestRoutingType

public static RequestRoutingType getRequestRoutingType(int routingCode)
ignore checks takes precedence over should_route and force it to be local store.

Parameters:
routingCode - The routing code
Returns:
The corresponding enum


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