public static enum HexagonMap.Direction extends Enum<HexagonMap.Direction>
| Enum Constant and Description |
|---|
EAST |
NORTHEAST |
NORTHWEST |
SOUTHEAST |
SOUTHWEST |
WEST |
| Modifier and Type | Method and Description |
|---|---|
static HexagonMap.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HexagonMap.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HexagonMap.Direction NORTHWEST
public static final HexagonMap.Direction NORTHEAST
public static final HexagonMap.Direction EAST
public static final HexagonMap.Direction SOUTHEAST
public static final HexagonMap.Direction SOUTHWEST
public static final HexagonMap.Direction WEST
public static HexagonMap.Direction[] values()
for (HexagonMap.Direction c : HexagonMap.Direction.values()) System.out.println(c);
public static HexagonMap.Direction 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 © 2019 GSI Helmholtzzentrum für Schwerionenforschung GmbH. All rights reserved.