public enum AccessAll extends java.lang.Enum<AccessAll> implements AccessPermissions
| Enum Constant and Description |
|---|
ACCESSIBLE_FOR_NOTIFY |
NOT_ACCESSIBLE |
NOT_IMPLEMENTED |
READ_CREATE |
READ_ONLY |
READ_WRITE |
WRITE_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static AccessAll |
find(java.lang.String keyword,
boolean mandatory) |
boolean |
isCreateWritable() |
boolean |
isReadable() |
boolean |
isWritable() |
java.lang.String |
toString() |
static AccessAll |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessAll[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessAll READ_ONLY
public static final AccessAll READ_WRITE
public static final AccessAll WRITE_ONLY
public static final AccessAll NOT_ACCESSIBLE
public static final AccessAll ACCESSIBLE_FOR_NOTIFY
public static final AccessAll READ_CREATE
public static final AccessAll NOT_IMPLEMENTED
public static AccessAll[] values()
for (AccessAll c : AccessAll.values()) System.out.println(c);
public static AccessAll valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<AccessAll>public static AccessAll find(java.lang.String keyword, boolean mandatory)
public boolean isCreateWritable()
isCreateWritable in interface AccessPermissionspublic boolean isReadable()
isReadable in interface AccessPermissionspublic boolean isWritable()
isWritable in interface AccessPermissions