static enum FuzzyRowFilter.SatisfiesCode extends Enum<FuzzyRowFilter.SatisfiesCode>
Enum Constant and Description |
---|
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
|
YES
row satisfies fuzzy rule
|
Modifier and Type | Method and Description |
---|---|
static FuzzyRowFilter.SatisfiesCode |
valueOf(String name)
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.
|
public static final FuzzyRowFilter.SatisfiesCode YES
public static final FuzzyRowFilter.SatisfiesCode NEXT_EXISTS
public static final FuzzyRowFilter.SatisfiesCode NO_NEXT
public static FuzzyRowFilter.SatisfiesCode[] values()
for (FuzzyRowFilter.SatisfiesCode c : FuzzyRowFilter.SatisfiesCode.values()) System.out.println(c);
public static FuzzyRowFilter.SatisfiesCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2007–2020 The Apache Software Foundation. All rights reserved.