@InterfaceAudience.Public @InterfaceStability.Stable public enum AclEntryScope extends Enum<AclEntryScope>
Enum Constant and Description |
---|
ACCESS
An ACL entry that is inspected during permission checks to enforce
permissions.
|
DEFAULT
An ACL entry to be applied to a directory's children that do not otherwise
have their own ACL defined.
|
Modifier and Type | Method and Description |
---|---|
static AclEntryScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AclEntryScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AclEntryScope ACCESS
public static final AclEntryScope DEFAULT
public static AclEntryScope[] values()
for (AclEntryScope c : AclEntryScope.values()) System.out.println(c);
public static AclEntryScope 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 © 2017 Apache Software Foundation. All rights reserved.