public static enum Entry.Access extends Enum<Entry.Access>
| Enum Constant and Description |
|---|
CREATE
Creation.
|
READ
Last access.
|
WRITE
Last modification.
|
| 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 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 © 2005–2018 Schlichtherle IT Services. All rights reserved.