public enum DistanceUnit extends Enum<DistanceUnit>
| Enum Constant and Description |
|---|
KILOMETER |
METER |
MILE |
NAUTICAL_MILE |
| Modifier and Type | Method and Description |
|---|---|
double |
convert(double distance,
DistanceUnit distUnit) |
String |
symbol() |
double |
unitInMeter() |
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 METER
public static final DistanceUnit KILOMETER
public static final DistanceUnit MILE
public static final DistanceUnit NAUTICAL_MILE
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 convert(double distance,
DistanceUnit distUnit)
public String symbol()
public double unitInMeter()
Copyright © 2020. All rights reserved.