HBASE-14800 TCompareOp which was missing from initial checkin

This commit is contained in:
tedyu 2015-12-25 18:13:35 -08:00
parent b8e2e4a1e7
commit 5eefe13173
1 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1,64 @@
/**
* Autogenerated by Thrift Compiler (0.9.3)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hadoop.hbase.thrift2.generated;
import java.util.Map;
import java.util.HashMap;
import org.apache.thrift.TEnum;
/**
* Thrift wrapper around
* org.apache.hadoop.hbase.filter.CompareFilter$CompareOp.
*/
public enum TCompareOp implements org.apache.thrift.TEnum {
LESS(0),
LESS_OR_EQUAL(1),
EQUAL(2),
NOT_EQUAL(3),
GREATER_OR_EQUAL(4),
GREATER(5),
NO_OP(6);
private final int value;
private TCompareOp(int value) {
this.value = value;
}
/**
* Get the integer value of this enum value, as defined in the Thrift IDL.
*/
public int getValue() {
return value;
}
/**
* Find a the enum type by its integer value, as defined in the Thrift IDL.
* @return null if the value is not found.
*/
public static TCompareOp findByValue(int value) {
switch (value) {
case 0:
return LESS;
case 1:
return LESS_OR_EQUAL;
case 2:
return EQUAL;
case 3:
return NOT_EQUAL;
case 4:
return GREATER_OR_EQUAL;
case 5:
return GREATER;
case 6:
return NO_OP;
default:
return null;
}
}
}