Package mil.nga.proj
Enum ProjectionFactoryType
- java.lang.Object
-
- java.lang.Enum<ProjectionFactoryType>
-
- mil.nga.proj.ProjectionFactoryType
-
- All Implemented Interfaces:
Serializable
,Comparable<ProjectionFactoryType>
public enum ProjectionFactoryType extends Enum<ProjectionFactoryType>
Projection factory retrieval types for coordinate projections and transformations- Author:
- osbornb
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CACHE
Cached projections from previous retrievalsDEFINITION
Well-Known Text Definition parsing and proj4j conversionDEFINITION_PARAMETERS
Well-Known Text Definition parsing, PROJ conversion, and proj4j creationNAME
proj4j creation from a well-known coordinate reference system namePARAMETERS
proj4j creation from proj4j projection parametersPROPERTIES
Creation from project and custom properties of configured proj4j projection parameters
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProjectionFactoryType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProjectionFactoryType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CACHE
public static final ProjectionFactoryType CACHE
Cached projections from previous retrievals
-
DEFINITION
public static final ProjectionFactoryType DEFINITION
Well-Known Text Definition parsing and proj4j conversion
-
DEFINITION_PARAMETERS
public static final ProjectionFactoryType DEFINITION_PARAMETERS
Well-Known Text Definition parsing, PROJ conversion, and proj4j creation- Since:
- 1.1.0
-
NAME
public static final ProjectionFactoryType NAME
proj4j creation from a well-known coordinate reference system name
-
PARAMETERS
public static final ProjectionFactoryType PARAMETERS
proj4j creation from proj4j projection parameters
-
PROPERTIES
public static final ProjectionFactoryType PROPERTIES
Creation from project and custom properties of configured proj4j projection parameters
-
-
Method Detail
-
values
public static ProjectionFactoryType[] 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 (ProjectionFactoryType c : ProjectionFactoryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProjectionFactoryType 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
-
-