public enum NMEACategory extends Enum<NMEACategory>
| Enum Constant and Description |
|---|
Acceleration |
Attitude |
Bearing |
Coordinate |
Depth |
GPS |
Miscelleneous |
RPM |
Speed |
Temperature |
Turn |
Waypoint |
Wind |
| Modifier and Type | Method and Description |
|---|---|
static NMEACategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NMEACategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NMEACategory Wind
public static final NMEACategory Bearing
public static final NMEACategory Depth
public static final NMEACategory Speed
public static final NMEACategory Coordinate
public static final NMEACategory Waypoint
public static final NMEACategory GPS
public static final NMEACategory Temperature
public static final NMEACategory Turn
public static final NMEACategory RPM
public static final NMEACategory Attitude
public static final NMEACategory Acceleration
public static final NMEACategory Miscelleneous
public static NMEACategory[] values()
for (NMEACategory c : NMEACategory.values()) System.out.println(c);
public static NMEACategory 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 nullCopyright © 2017. All rights reserved.