public static enum Access.Level extends Enum<Access.Level>
Modifier and Type | Method and Description |
---|---|
String |
value() |
static Access.Level |
value(String v) |
static Access.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Access.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Access.Level RW
public static final Access.Level RO
public static Access.Level[] values()
for (Access.Level c : Access.Level.values()) System.out.println(c);
public static Access.Level 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 Access.Level value(String v)
public String value()
Copyright © 2017. All rights reserved.