public enum CoordSysType extends Enum<CoordSysType>
| Enum Constant and Description |
|---|
ENGINEERING
Engineering Coordinate System.
|
GEOGRAPHIC
Geographic Coordinate System based on an ellipsoidal approximation of the Earth.
|
| Modifier and Type | Method and Description |
|---|---|
static CoordSysType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoordSysType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoordSysType GEOGRAPHIC
public static final CoordSysType ENGINEERING
public static CoordSysType[] values()
for (CoordSysType c : CoordSysType.values()) System.out.println(c);
public static CoordSysType 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 null