public static enum DistanceHandler.Precision extends Enum<DistanceHandler.Precision>
| Enum Constant and Description |
|---|
EXACT |
TWENTYFEET |
TWOFEET |
TWOHUNDREDFEET |
| Modifier and Type | Method and Description |
|---|---|
static DistanceHandler.Precision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistanceHandler.Precision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistanceHandler.Precision EXACT
public static final DistanceHandler.Precision TWOFEET
public static final DistanceHandler.Precision TWENTYFEET
public static final DistanceHandler.Precision TWOHUNDREDFEET
public static DistanceHandler.Precision[] values()
for (DistanceHandler.Precision c : DistanceHandler.Precision.values()) System.out.println(c);
public static DistanceHandler.Precision 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