org.hbase.async.generated
Enum HBasePB.CompareType

java.lang.Object
  extended by java.lang.Enum<HBasePB.CompareType>
      extended by org.hbase.async.generated.HBasePB.CompareType
All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite, Serializable, Comparable<HBasePB.CompareType>
Enclosing class:
HBasePB

public static enum HBasePB.CompareType
extends Enum<HBasePB.CompareType>
implements com.google.protobuf.Internal.EnumLite

Protobuf enum CompareType

 Comparison operators 
 


Enum Constant Summary
EQUAL
          EQUAL = 2;
GREATER
          GREATER = 5;
GREATER_OR_EQUAL
          GREATER_OR_EQUAL = 4;
LESS
          LESS = 0;
LESS_OR_EQUAL
          LESS_OR_EQUAL = 1;
NO_OP
          NO_OP = 6;
NOT_EQUAL
          NOT_EQUAL = 3;
 
Field Summary
static int EQUAL_VALUE
          EQUAL = 2;
static int GREATER_OR_EQUAL_VALUE
          GREATER_OR_EQUAL = 4;
static int GREATER_VALUE
          GREATER = 5;
static int LESS_OR_EQUAL_VALUE
          LESS_OR_EQUAL = 1;
static int LESS_VALUE
          LESS = 0;
static int NO_OP_VALUE
          NO_OP = 6;
static int NOT_EQUAL_VALUE
          NOT_EQUAL = 3;
 
Method Summary
 int getNumber()
           
static com.google.protobuf.Internal.EnumLiteMap<HBasePB.CompareType> internalGetValueMap()
           
static HBasePB.CompareType valueOf(int value)
           
static HBasePB.CompareType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HBasePB.CompareType[] 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

LESS

public static final HBasePB.CompareType LESS
LESS = 0;


LESS_OR_EQUAL

public static final HBasePB.CompareType LESS_OR_EQUAL
LESS_OR_EQUAL = 1;


EQUAL

public static final HBasePB.CompareType EQUAL
EQUAL = 2;


NOT_EQUAL

public static final HBasePB.CompareType NOT_EQUAL
NOT_EQUAL = 3;


GREATER_OR_EQUAL

public static final HBasePB.CompareType GREATER_OR_EQUAL
GREATER_OR_EQUAL = 4;


GREATER

public static final HBasePB.CompareType GREATER
GREATER = 5;


NO_OP

public static final HBasePB.CompareType NO_OP
NO_OP = 6;

Field Detail

LESS_VALUE

public static final int LESS_VALUE
LESS = 0;

See Also:
Constant Field Values

LESS_OR_EQUAL_VALUE

public static final int LESS_OR_EQUAL_VALUE
LESS_OR_EQUAL = 1;

See Also:
Constant Field Values

EQUAL_VALUE

public static final int EQUAL_VALUE
EQUAL = 2;

See Also:
Constant Field Values

NOT_EQUAL_VALUE

public static final int NOT_EQUAL_VALUE
NOT_EQUAL = 3;

See Also:
Constant Field Values

GREATER_OR_EQUAL_VALUE

public static final int GREATER_OR_EQUAL_VALUE
GREATER_OR_EQUAL = 4;

See Also:
Constant Field Values

GREATER_VALUE

public static final int GREATER_VALUE
GREATER = 5;

See Also:
Constant Field Values

NO_OP_VALUE

public static final int NO_OP_VALUE
NO_OP = 6;

See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

public static HBasePB.CompareType 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

getNumber

public final int getNumber()
Specified by:
getNumber in interface com.google.protobuf.Internal.EnumLite

valueOf

public static HBasePB.CompareType valueOf(int value)

internalGetValueMap

public static com.google.protobuf.Internal.EnumLiteMap<HBasePB.CompareType> internalGetValueMap()


Copyright © 2010-2015, The Async HBase Authors