| Enum Constant and Description |
|---|
BALL
Tiles with balls.
|
BASE
Bases.
|
GRASS
Grass tiles.
|
LOCATION
Locations of the map.
|
STADIUM
Stadiums.
|
WATER
Water tiles.
|
| Modifier and Type | Method and Description |
|---|---|
static MapObject |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapObject[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapObject LOCATION
public static final MapObject BASE
public static final MapObject STADIUM
public static final MapObject WATER
public static final MapObject GRASS
public static final MapObject BALL
public static MapObject[] values()
for (MapObject c : MapObject.values()) System.out.println(c);
public static MapObject valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null