|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Units>
net.sf.marineapi.nmea.util.Units
public enum Units
Defines the supported units of measure.
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
NullPointerException
- if the argument is nullpublic char toChar()
public static Units valueOf(char ch)
ch
- Char indicator for unit
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |