public enum TileEdge extends Enum<TileEdge>
| Modifier and Type | Method and Description |
|---|---|
static TileEdge |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TileEdge[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TileEdge None
public static final TileEdge N
public static final TileEdge S
public static final TileEdge E
public static final TileEdge W
public static final TileEdge Z
public static TileEdge[] values()
for (TileEdge c : TileEdge.values()) System.out.println(c);
public static TileEdge 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 null