|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Filter.ReturnCode>
org.apache.hadoop.hbase.filter.Filter.ReturnCode
public static enum Filter.ReturnCode
Return codes for filterValue().
Enum Constant Summary | |
---|---|
INCLUDE
Include the KeyValue |
|
NEXT_COL
Skip this column. |
|
NEXT_ROW
Done with columns, skip to next row. |
|
SEEK_NEXT_USING_HINT
Seek to next key which is given as hint by the filter. |
|
SKIP
Skip this KeyValue |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Filter.ReturnCode INCLUDE
public static final Filter.ReturnCode SKIP
public static final Filter.ReturnCode NEXT_COL
public static final Filter.ReturnCode NEXT_ROW
public static final Filter.ReturnCode SEEK_NEXT_USING_HINT
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |