public static enum TestOptions.GeoCoordinateOption extends Enum<TestOptions.GeoCoordinateOption>
| Enum Constant and Description |
|---|
Degrees
Do not adjust horizontal coordinates.
|
Feet
Treat horizontal coordinates as being in feet
|
Meters
Treat horizontal coordinates as being in meters
|
| Modifier and Type | Method and Description |
|---|---|
static TestOptions.GeoCoordinateOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestOptions.GeoCoordinateOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestOptions.GeoCoordinateOption Meters
public static final TestOptions.GeoCoordinateOption Feet
public static final TestOptions.GeoCoordinateOption Degrees
public static TestOptions.GeoCoordinateOption[] values()
for (TestOptions.GeoCoordinateOption c : TestOptions.GeoCoordinateOption.values()) System.out.println(c);
public static TestOptions.GeoCoordinateOption 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 © 2019. All rights reserved.