public static enum Constants.Area extends Enum<Constants.Area>
AreaInstruction| Enum Constant and Description |
|---|
DISTRICT |
PARK |
SQUARE
open area or plaza
|
| Modifier and Type | Method and Description |
|---|---|
static Constants.Area |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.Area[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.Area SQUARE
public static final Constants.Area PARK
public static final Constants.Area DISTRICT
public static Constants.Area[] values()
for (Constants.Area c : Constants.Area.values()) System.out.println(c);
public static Constants.Area 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 © 2018. All rights reserved.