Package mil.nga.crs
Enum CRSType
- java.lang.Object
-
- java.lang.Enum<CRSType>
-
- mil.nga.crs.CRSType
-
- All Implemented Interfaces:
Serializable
,Comparable<CRSType>
public enum CRSType extends Enum<CRSType>
Well-known text representation of coordinate reference systems type- Author:
- osbornb
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOUND
BoundCOMPOUND
CompoundCONCATENATED_OPERATION
Concatenated OperationCOORDINATE_METADATA
Coordinate MetadataCOORDINATE_OPERATION
Coordinate OperationDERIVED
DerivedENGINEERING
EngineeringGEODETIC
GeodeticGEOGRAPHIC
GeographicPARAMETRIC
ParametricPOINT_MOTION_OPERATION
Point Motion OperationPROJECTED
ProjectedTEMPORAL
TemporalVERTICAL
Vertical
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CategoryType
getCategoryType()
Get the category typestatic CRSType
valueOf(String name)
Returns the enum constant of this type with the specified name.static CRSType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOUND
public static final CRSType BOUND
Bound
-
COMPOUND
public static final CRSType COMPOUND
Compound
-
CONCATENATED_OPERATION
public static final CRSType CONCATENATED_OPERATION
Concatenated Operation
-
COORDINATE_METADATA
public static final CRSType COORDINATE_METADATA
Coordinate Metadata
-
COORDINATE_OPERATION
public static final CRSType COORDINATE_OPERATION
Coordinate Operation
-
DERIVED
public static final CRSType DERIVED
Derived
-
ENGINEERING
public static final CRSType ENGINEERING
Engineering
-
GEODETIC
public static final CRSType GEODETIC
Geodetic
-
GEOGRAPHIC
public static final CRSType GEOGRAPHIC
Geographic
-
PARAMETRIC
public static final CRSType PARAMETRIC
Parametric
-
POINT_MOTION_OPERATION
public static final CRSType POINT_MOTION_OPERATION
Point Motion Operation
-
PROJECTED
public static final CRSType PROJECTED
Projected
-
TEMPORAL
public static final CRSType TEMPORAL
Temporal
-
VERTICAL
public static final CRSType VERTICAL
Vertical
-
-
Method Detail
-
values
public static CRSType[] 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 (CRSType c : CRSType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CRSType 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
-
getCategoryType
public CategoryType getCategoryType()
Get the category type- Returns:
- category type
-
-