@InterfaceAudience.Public public static enum Filter.ReturnCode extends Enum<Filter.ReturnCode>
Enum Constant and Description |
---|
INCLUDE
Include the Cell
|
INCLUDE_AND_NEXT_COL
Include the Cell and seek to the next column skipping older versions.
|
INCLUDE_AND_SEEK_NEXT_ROW
Include KeyValue and done with row, seek to next.
|
NEXT_COL
Skip this column.
|
NEXT_ROW
Seek to next row in current family.
|
SEEK_NEXT_USING_HINT
Seek to next key which is given as hint by the filter.
|
SKIP
Skip this Cell
|
Modifier and Type | Method and Description |
---|---|
static Filter.ReturnCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Filter.ReturnCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Filter.ReturnCode INCLUDE
public static final Filter.ReturnCode INCLUDE_AND_NEXT_COL
public static final Filter.ReturnCode SKIP
public static final Filter.ReturnCode NEXT_COL
public static final Filter.ReturnCode NEXT_ROW
Filter.filterCell(Cell)
, even if we get a NEXT_ROW
returned for previous cell. For more details see HBASE-18368. public static final Filter.ReturnCode SEEK_NEXT_USING_HINT
public static final Filter.ReturnCode INCLUDE_AND_SEEK_NEXT_ROW
public static Filter.ReturnCode[] values()
for (Filter.ReturnCode c : Filter.ReturnCode.values()) System.out.println(c);
public static Filter.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 © 2007–2020 The Apache Software Foundation. All rights reserved.