public enum DistanceUnit extends Enum<DistanceUnit>
| Enum Constant and Description |
|---|
KILOMETERS |
METERS |
MILES |
NAUTICAL_MILES |
YARDS |
| Modifier and Type | Method and Description |
|---|---|
Double |
fromMeters(Double distanceInMeters) |
double |
toMeters(double distance) |
static DistanceUnit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistanceUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistanceUnit METERS
public static final DistanceUnit KILOMETERS
public static final DistanceUnit MILES
public static final DistanceUnit YARDS
public static final DistanceUnit NAUTICAL_MILES
public static DistanceUnit[] values()
for (DistanceUnit c : DistanceUnit.values()) System.out.println(c);
public static DistanceUnit 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 double toMeters(double distance)
Copyright © 2006-2019 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.