@Api(allMethods=true) public enum UnitType extends Enum<UnitType>
| Enum Constant and Description |
|---|
CRS
Coordinate Reference System Units.
|
ENGLISH
English Units.
|
ENGLISH_FOOT
English Units.
|
METRIC
Metric Units.
|
| Modifier and Type | Method and Description |
|---|---|
static UnitType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnitType METRIC
public static final UnitType ENGLISH
public static final UnitType ENGLISH_FOOT
public static final UnitType CRS
public static UnitType[] values()
for (UnitType c : UnitType.values()) System.out.println(c);
public static UnitType 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 nullCopyright © 2015 Geosparc. All Rights Reserved.