public enum ENMEAMode extends Enum<ENMEAMode>
| Enum Constant and Description |
|---|
NoFix
No fix available
|
NotSeen
no mode value yet seen
|
ThreeDimensional
three dimensional fix
|
TwoDimensional
two dimensional fix
|
| Modifier and Type | Method and Description |
|---|---|
static ENMEAMode |
fromInt(int mode) |
static ENMEAMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ENMEAMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ENMEAMode NotSeen
public static final ENMEAMode NoFix
public static final ENMEAMode TwoDimensional
public static final ENMEAMode ThreeDimensional
public static ENMEAMode[] values()
for (ENMEAMode c : ENMEAMode.values()) System.out.println(c);
public static ENMEAMode 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 © 2011–2017 Taimos GmbH. All rights reserved.