public static enum AclEntry.PermissionValue extends Enum<AclEntry.PermissionValue>
Enum Constant and Description |
---|
DENY
If DENY, the user or group is denied the permission.
|
FALSE
If FALSE, the user or group is neither granted nor denied the permission by this AclEntry.
|
TRUE
If TRUE, the user or group is granted the permission.
|
Modifier and Type | Method and Description |
---|---|
static AclEntry.PermissionValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AclEntry.PermissionValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AclEntry.PermissionValue TRUE
public static final AclEntry.PermissionValue FALSE
public static final AclEntry.PermissionValue DENY
public static AclEntry.PermissionValue[] values()
for (AclEntry.PermissionValue c : AclEntry.PermissionValue.values()) System.out.println(c);
public static AclEntry.PermissionValue 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 (c) 2020, SAS Institute Inc., Cary, NC, USA