public static enum FuzzyRowFilter.ReturnCode extends Enum<FuzzyRowFilter.ReturnCode>
| Enum Constant and Description |
|---|
DONE
No greater rows can possibly match.
|
INCLUDE
Include this row.
|
SEEK_NEXT_USING_HINT
Seek to next row which is given as hint by the filter.
|
| Modifier and Type | Method and Description |
|---|---|
static FuzzyRowFilter.ReturnCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FuzzyRowFilter.ReturnCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FuzzyRowFilter.ReturnCode INCLUDE
public static final FuzzyRowFilter.ReturnCode SEEK_NEXT_USING_HINT
public static final FuzzyRowFilter.ReturnCode DONE
public static FuzzyRowFilter.ReturnCode[] values()
for (FuzzyRowFilter.ReturnCode c : FuzzyRowFilter.ReturnCode.values()) System.out.println(c);
public static FuzzyRowFilter.ReturnCode 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 © 2016 Cask Data, Inc. Licensed under the Apache License, Version 2.0.