public enum Units extends Enum<Units>
Enum Constant and Description |
---|
CELSIUS
Temperature in degrees Celsius (centigrade)
|
FATHOMS
Depth in fathoms
|
FEET
Length in feet
|
KMH
Speed in kilometers per hour
|
KNOT
Speed in knots (nautical miles per hour)
|
METER
Length in meter
|
Modifier and Type | Method and Description |
---|---|
char |
toChar()
Returns the corresponding char constant.
|
static Units |
valueOf(char ch)
Get the enum corresponding to specified char.
|
static Units |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Units[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Units CELSIUS
public static final Units FATHOMS
public static final Units FEET
public static final Units KMH
public static final Units KNOT
public static final Units METER
public static Units[] values()
for (Units c : Units.values()) System.out.println(c);
public static Units 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 char toChar()
public static Units valueOf(char ch)
ch
- Char indicator for unitCopyright (C) 2010-2017 Java Marine API authors. All Rights Reserved.