Package org.openjump.core.ccordsys.utils
Class SRSInfo
- java.lang.Object
-
- org.openjump.core.ccordsys.utils.SRSInfo
-
public class SRSInfo extends Object
Small container for SRS information. This class does not contain all information to perform coordinate transformation, but enough to return metadata about SRS code or map unit. Example : new SRSInfo().setCode("2154").complete();
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SRSInfo.Registry
-
Field Summary
Fields Modifier and Type Field Description static String
UNDEFINED
static String
USERDEFINED
-
Constructor Summary
Constructors Constructor Description SRSInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SRSInfo
complete()
boolean
equals(Object o)
String
getCode()
String
getDescription()
SRSInfo.Registry
getRegistry()
String
getSource()
Unit
getUnit()
int
hashCode()
SRSInfo
setCode(String code)
SRSInfo
setDescription(String description)
SRSInfo
setRegistry(String registry)
SRSInfo
setRegistry(SRSInfo.Registry registry)
SRSInfo
setSource(String source)
SRSInfo
setUnit(String unit)
SRSInfo
setUnit(Unit unit)
String
toString()
-
-
-
Field Detail
-
UNDEFINED
public static final String UNDEFINED
- See Also:
- Constant Field Values
-
USERDEFINED
public static final String USERDEFINED
- See Also:
- Constant Field Values
-
-
Method Detail
-
getSource
public String getSource()
-
getRegistry
public SRSInfo.Registry getRegistry()
-
setRegistry
public SRSInfo setRegistry(SRSInfo.Registry registry)
-
getCode
public String getCode()
-
getDescription
public String getDescription()
-
getUnit
public Unit getUnit()
-
complete
public SRSInfo complete()
-
-