public enum AccessValue extends Enum<AccessValue>
Enum Constant and Description |
---|
ACCESSIBLE |
EVENTUALLY_ACCESSIBLE |
NOT_ACCESSIBLE |
Modifier and Type | Method and Description |
---|---|
static AccessValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessValue ACCESSIBLE
public static final AccessValue EVENTUALLY_ACCESSIBLE
public static final AccessValue NOT_ACCESSIBLE
public static AccessValue[] values()
for (AccessValue c : AccessValue.values()) System.out.println(c);
public static AccessValue 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 © 2012–2018. All rights reserved.