public enum CoordinateReferenceSystemType extends Enum<CoordinateReferenceSystemType>
| Enum Constant and Description | 
|---|
| LINKA coordinate reference system that is specifed by a dereferenceable URI | 
| NAMEA coordinate reference system that is specifed by name | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getTypeName()Gets the GeoJSON-defined name for the type. | 
| static CoordinateReferenceSystemType | valueOf(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(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 String getTypeName()