public enum HexagonOrientation extends Enum<HexagonOrientation>
Hexagon
.
ANGLED
element has a "pointy" top with a single vertex touching the upper edge
of its bounding rectangle.
FLAT
element has edges that run along the upper and lower edges of its bounding
rectangle
Enum Constant and Description |
---|
ANGLED
An
ANGLED element has a "pointy" top with a single vertex touching the upper edge of
its bounding rectangle. |
FLAT
A
FLAT element has edges that run along the upper and lower edges of its bounding
rectangle |
Modifier and Type | Method and Description |
---|---|
static HexagonOrientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HexagonOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HexagonOrientation ANGLED
ANGLED
element has a "pointy" top with a single vertex touching the upper edge of
its bounding rectangle.public static final HexagonOrientation FLAT
FLAT
element has edges that run along the upper and lower edges of its bounding
rectanglepublic static HexagonOrientation[] values()
for (HexagonOrientation c : HexagonOrientation.values()) System.out.println(c);
public static HexagonOrientation 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 © 1996–2019 Geotools. All rights reserved.