Package org.apache.hadoop.hbase.filter
Enum CompareFilter.CompareOp
- All Implemented Interfaces:
Serializable
,Comparable<CompareFilter.CompareOp>
- Enclosing class:
- CompareFilter
@Deprecated
@Public
public static enum CompareFilter.CompareOp
extends Enum<CompareFilter.CompareOp>
Deprecated.
Comparison operators. For filters only! Use
CompareOperator
otherwise. It
(intentionally) has at least the below enums with same names.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated.equalsDeprecated.greater thanDeprecated.greater than or equal toDeprecated.less thanDeprecated.less than or equal toDeprecated.no operationDeprecated.not equal -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic CompareFilter.CompareOp
Deprecated.Returns the enum constant of this type with the specified name.static CompareFilter.CompareOp[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
LESS
Deprecated.less than -
LESS_OR_EQUAL
Deprecated.less than or equal to -
EQUAL
Deprecated.equals -
NOT_EQUAL
Deprecated.not equal -
GREATER_OR_EQUAL
Deprecated.greater than or equal to -
GREATER
Deprecated.greater than -
NO_OP
Deprecated.no operation
-
-
Constructor Details
-
CompareOp
private CompareOp()Deprecated.
-
-
Method Details
-
values
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Deprecated.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 nameNullPointerException
- if the argument is null
-
CompareOperator
instead.