Package org.apache.hadoop.hbase.filter
Enum FuzzyRowFilter.SatisfiesCode
java.lang.Object
java.lang.Enum<FuzzyRowFilter.SatisfiesCode>
org.apache.hadoop.hbase.filter.FuzzyRowFilter.SatisfiesCode
- All Implemented Interfaces:
Serializable
,Comparable<FuzzyRowFilter.SatisfiesCode>
- Enclosing class:
- FuzzyRowFilter
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionrow doesn't satisfy fuzzy rule, but there's possible greater row that doesrow doesn't satisfy fuzzy rule and there's no greater row that doesrow satisfies fuzzy rule -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic FuzzyRowFilter.SatisfiesCode
Returns the enum constant of this type with the specified name.static FuzzyRowFilter.SatisfiesCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
YES
row satisfies fuzzy rule -
NEXT_EXISTS
row doesn't satisfy fuzzy rule, but there's possible greater row that does -
NO_NEXT
row doesn't satisfy fuzzy rule and there's no greater row that does
-
-
Constructor Details
-
SatisfiesCode
private SatisfiesCode()
-
-
Method Details
-
values
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
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
-