public static enum AccessControlFilter.Strategy extends Enum<AccessControlFilter.Strategy>
Enum Constant and Description |
---|
CHECK_CELL_DEFAULT
Cell permissions can override table or CF permissions
|
CHECK_TABLE_AND_CF_ONLY
Filter only by checking the table or CF permissions
|
Modifier and Type | Method and Description |
---|---|
static AccessControlFilter.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessControlFilter.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessControlFilter.Strategy CHECK_TABLE_AND_CF_ONLY
public static final AccessControlFilter.Strategy CHECK_CELL_DEFAULT
public static AccessControlFilter.Strategy[] values()
for (AccessControlFilter.Strategy c : AccessControlFilter.Strategy.values()) System.out.println(c);
public static AccessControlFilter.Strategy 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–2019 The Apache Software Foundation. All rights reserved.