public enum LocationEnum extends Enum<LocationEnum>
| Enum Constant and Description |
|---|
CLASS
CLASS
|
FIELD
FIELD
|
GETTER
GETTER
|
METHOD
METHOD
|
SETTER
SETTER
|
| Modifier and Type | Method and Description |
|---|---|
static LocationEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocationEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocationEnum CLASS
public static final LocationEnum METHOD
public static final LocationEnum FIELD
public static final LocationEnum GETTER
public static final LocationEnum SETTER
public static LocationEnum[] values()
for (LocationEnum c : LocationEnum.values()) System.out.println(c);
public static LocationEnum 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 © 2017 Esfinge Framework. All rights reserved.