public enum CoordinateReferenceSystem extends Enum<CoordinateReferenceSystem>
| Modifier and Type | Method and Description |
|---|---|
int |
code() |
String |
href() |
String |
type() |
static CoordinateReferenceSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoordinateReferenceSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoordinateReferenceSystem Cartesian
public static final CoordinateReferenceSystem WGS84
public static CoordinateReferenceSystem[] values()
for (CoordinateReferenceSystem c : CoordinateReferenceSystem.values()) System.out.println(c);
public static CoordinateReferenceSystem 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 int code()
public String type()
public String href()
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.