public static enum CRS.AxisOrder extends Enum<CRS.AxisOrder>
| Enum Constant and Description |
|---|
EAST_NORTH
Ordering in which longitude comes before latitude, commonly referred to as x/y ordering.
|
INAPPLICABLE
Indicates axis ordering is not applicable to the coordinate reference system.
|
NORTH_EAST |
| Modifier and Type | Field and Description |
|---|---|
static CRS.AxisOrder |
LAT_LON
Deprecated.
use
NORTH_EAST |
static CRS.AxisOrder |
LON_LAT
Deprecated.
use
EAST_NORTH |
| Modifier and Type | Method and Description |
|---|---|
static CRS.AxisOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CRS.AxisOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CRS.AxisOrder EAST_NORTH
public static final CRS.AxisOrder NORTH_EAST
public static final CRS.AxisOrder INAPPLICABLE
public static CRS.AxisOrder LON_LAT
EAST_NORTHpublic static CRS.AxisOrder LAT_LON
NORTH_EASTpublic static CRS.AxisOrder[] values()
for (CRS.AxisOrder c : CRS.AxisOrder.values()) System.out.println(c);
public static CRS.AxisOrder 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.