public static enum Entry.Access extends Enum<Entry.Access>
Enum Constant and Description |
---|
CREATE
Create or overwrite the entry.
|
DELETE
Delete the entry.
|
EXECUTE
Execute the entry.
|
READ
Read the entry.
|
WRITE
Write the entry.
|
Modifier and Type | Method and Description |
---|---|
static Entry.Access |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Entry.Access[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Entry.Access CREATE
public static final Entry.Access DELETE
public static final Entry.Access EXECUTE
public static final Entry.Access READ
public static final Entry.Access WRITE
public static Entry.Access 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 nullpublic static Entry.Access[] values()
for (Entry.Access c : Entry.Access.values()) System.out.println(c);
Copyright © 2012–2015 Schlichtherle IT Services. All rights reserved.