Package org.geolatte.geom.crs
Enum CoordinateSystemAxisDirection
- java.lang.Object
-
- java.lang.Enum<CoordinateSystemAxisDirection>
-
- org.geolatte.geom.crs.CoordinateSystemAxisDirection
-
- All Implemented Interfaces:
Serializable,Comparable<CoordinateSystemAxisDirection>
public enum CoordinateSystemAxisDirection extends Enum<CoordinateSystemAxisDirection>
Enumerates the possible values of direction for aCoordinateSystemAxis.- Author:
- Karel Maesen, Geovise BVBA creation-date: 4/29/11
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOWNEASTGeocentricXGeocentricYGeocentricZNORTHOTHERSOUTHUNKNOWNUPWEST
-
Field Summary
Fields Modifier and Type Field Description intdefaultNormalOrder
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CoordinateSystemAxisDirectionvalueOf(String name)Returns the enum constant of this type with the specified name.static CoordinateSystemAxisDirection[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORTH
public static final CoordinateSystemAxisDirection NORTH
-
EAST
public static final CoordinateSystemAxisDirection EAST
-
SOUTH
public static final CoordinateSystemAxisDirection SOUTH
-
WEST
public static final CoordinateSystemAxisDirection WEST
-
UP
public static final CoordinateSystemAxisDirection UP
-
DOWN
public static final CoordinateSystemAxisDirection DOWN
-
OTHER
public static final CoordinateSystemAxisDirection OTHER
-
UNKNOWN
public static final CoordinateSystemAxisDirection UNKNOWN
-
GeocentricX
public static final CoordinateSystemAxisDirection GeocentricX
-
GeocentricY
public static final CoordinateSystemAxisDirection GeocentricY
-
GeocentricZ
public static final CoordinateSystemAxisDirection GeocentricZ
-
-
Method Detail
-
values
public static CoordinateSystemAxisDirection[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CoordinateSystemAxisDirection c : CoordinateSystemAxisDirection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CoordinateSystemAxisDirection valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-