Package mil.nga.proj

Enum ProjectionFactoryType

    • Enum Constant Detail

      • 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 name
        NullPointerException - if the argument is null