Package org.apache.hadoop.hbase.filter
Enum Class FuzzyRowFilter.SatisfiesCode
java.lang.Object
java.lang.Enum<FuzzyRowFilter.SatisfiesCode>
org.apache.hadoop.hbase.filter.FuzzyRowFilter.SatisfiesCode
- All Implemented Interfaces:
Serializable
,Comparable<FuzzyRowFilter.SatisfiesCode>
,Constable
- Enclosing class:
- FuzzyRowFilter
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum 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
-
Method Summary
Modifier and TypeMethodDescriptionstatic FuzzyRowFilter.SatisfiesCode
Returns the enum constant of this class with the specified name.static FuzzyRowFilter.SatisfiesCode[]
values()
Returns an array containing the constants of this enum class, 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 class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-