public enum CoordinateReferenceSystemType extends java.lang.Enum<CoordinateReferenceSystemType>
| Enum Constant and Description |
|---|
LINK
A coordinate reference system that is specifed by a dereferenceable URI
|
NAME
A coordinate reference system that is specifed by name
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getTypeName()
Gets the GeoJSON-defined name for the type.
|
static CoordinateReferenceSystemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CoordinateReferenceSystemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoordinateReferenceSystemType NAME
public static final CoordinateReferenceSystemType LINK
public static CoordinateReferenceSystemType[] values()
for (CoordinateReferenceSystemType c : CoordinateReferenceSystemType.values()) System.out.println(c);
public static CoordinateReferenceSystemType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getTypeName()