public enum SRID extends Enum<SRID>
Enum Constant and Description |
---|
WGS84_SRID
4326;"EPSG";4326;"GEOGCS["WGS 84"...
|
WGS84_SRID_PROJCS
3395;"EPSG";3395;"PROJCS["WGS 84 / World Mercator"...
|
Modifier and Type | Method and Description |
---|---|
abstract int |
getSRID() |
static SRID |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SRID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SRID WGS84_SRID
public static final SRID WGS84_SRID_PROJCS
public static SRID[] values()
for (SRID c : SRID.values()) System.out.println(c);
public static SRID valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic abstract int getSRID()
Copyright © 2015. All rights reserved.