Package org.openjump.core.ccordsys.utils
Enum SRSInfo.Registry
- java.lang.Object
-
- java.lang.Enum<SRSInfo.Registry>
-
- org.openjump.core.ccordsys.utils.SRSInfo.Registry
-
- All Implemented Interfaces:
Serializable
,Comparable<SRSInfo.Registry>
- Enclosing class:
- SRSInfo
public static enum SRSInfo.Registry extends Enum<SRSInfo.Registry>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SRSInfo.Registry
valueOf(String name)
Returns the enum constant of this type with the specified name.static SRSInfo.Registry[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SRID
public static final SRSInfo.Registry SRID
-
EPSG
public static final SRSInfo.Registry EPSG
-
ESRI
public static final SRSInfo.Registry ESRI
-
IGNF
public static final SRSInfo.Registry IGNF
-
SRORG
public static final SRSInfo.Registry SRORG
-
LOCAL_CoordinateReferenceSystem
public static final SRSInfo.Registry LOCAL_CoordinateReferenceSystem
-
-
Method Detail
-
values
public static SRSInfo.Registry[] 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 (SRSInfo.Registry c : SRSInfo.Registry.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SRSInfo.Registry 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
-
-