public enum AclEntryType extends Enum<AclEntryType >
| Enum Constant and Description |
|---|
ALARM
Generate an alarm, in a system dependent way, the access specified in the permissions component of the ACL entry.
|
ALLOW
Explicitly grants access to a file or directory.
|
AUDIT
Log, in a system dependent way, the access specified in the permissions component of the ACL entry.
|
DENY
Explicitly denies access to a file or directory.
|
| Modifier and Type | Method and Description |
|---|---|
static AclEntryType |
valueOf(String
Returns the enum constant of this type with the specified name.
|
static AclEntryType |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final AclEntryTypeALLOW
public static final AclEntryTypeDENY
public static final AclEntryTypeAUDIT
public static final AclEntryTypeALARM
public static AclEntryType[] values()
for (AclEntryType c : AclEntryType.values()) System.out.println(c);
public static AclEntryTypevalueOf(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