|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
ObjectEnum<CRS.AxisOrder>
CRS.AxisOrder
public static enum CRS.AxisOrder
Enumeration describing axis order for geographic coordinate reference systems.
Enum Constant Summary | |
---|---|
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
|
Field Summary | |
---|---|
static CRS.AxisOrder |
LAT_LON
Deprecated. use NORTH_EAST |
static CRS.AxisOrder |
LON_LAT
Deprecated. use EAST_NORTH |
Method Summary | |
---|---|
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. |
Methods inherited from class Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CRS.AxisOrder EAST_NORTH
public static final CRS.AxisOrder NORTH_EAST
public static final CRS.AxisOrder INAPPLICABLE
Field Detail |
---|
public static CRS.AxisOrder LON_LAT
EAST_NORTH
public static CRS.AxisOrder LAT_LON
NORTH_EAST
Method Detail |
---|
public 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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |