public static enum AxisOrder.Axis extends Enum<AxisOrder.Axis>
Enum Constant and Description |
---|
Down |
Easting |
Northing |
Southing |
Up |
Westing |
Modifier and Type | Method and Description |
---|---|
abstract double |
fromENU(ProjCoordinate c) |
abstract void |
toENU(double x,
ProjCoordinate c) |
static AxisOrder.Axis |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisOrder.Axis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisOrder.Axis Easting
public static final AxisOrder.Axis Westing
public static final AxisOrder.Axis Northing
public static final AxisOrder.Axis Southing
public static final AxisOrder.Axis Up
public static final AxisOrder.Axis Down
public static AxisOrder.Axis[] values()
for (AxisOrder.Axis c : AxisOrder.Axis.values()) System.out.println(c);
public static AxisOrder.Axis 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 nullpublic abstract double fromENU(ProjCoordinate c)
public abstract void toENU(double x, ProjCoordinate c)
Copyright © 2021. All rights reserved.