public enum LineOrientation extends Enum<LineOrientation>
Enum Constant and Description |
---|
HORIZONTAL
Line parallel to EAST-WEST axis in geographic space or X-axis in Cartesian space.
|
VERTICAL
Line parallel to North-South axis in geographic space or Y-axis in Cartesian space.
|
Modifier and Type | Method and Description |
---|---|
static LineOrientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineOrientation VERTICAL
public static final LineOrientation HORIZONTAL
public static LineOrientation[] values()
for (LineOrientation c : LineOrientation.values()) System.out.println(c);
public static LineOrientation 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.