public enum ACL_TYPE extends Enum<ACL_TYPE>
Enum Constant and Description |
---|
READ_ONLY |
WRITE_ANY |
WRITE_OWNER |
Modifier and Type | Method and Description |
---|---|
static ACL_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ACL_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ACL_TYPE READ_ONLY
public static final ACL_TYPE WRITE_OWNER
public static final ACL_TYPE WRITE_ANY
public static ACL_TYPE[] values()
for (ACL_TYPE c : ACL_TYPE.values()) System.out.println(c);
public static ACL_TYPE 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 © 2015. All Rights Reserved.