public enum DilutionOfPrecisionType extends Enum<DilutionOfPrecisionType> implements Enumeration
Enum Constant and Description |
---|
GEOMETRIC
The geometric dilution of precision (GDOP).
|
POSITION
The position dilution of precision (PDOP).
|
TIME
The time dilution of precision (TDOP).
|
X
The dilution of precision along the X axis.
|
XY
The dilution of precision in the X-Y plane.
|
Y
The dilution of precision along the Y axis.
|
Z
The dilution of precision along the Z axis.
|
Modifier and Type | Method and Description |
---|---|
static DilutionOfPrecisionType |
getDefault()
Get the enum constant that is considered to be the default.
|
static DilutionOfPrecisionType |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static DilutionOfPrecisionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DilutionOfPrecisionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DilutionOfPrecisionType X
public static final DilutionOfPrecisionType Y
public static final DilutionOfPrecisionType Z
public static final DilutionOfPrecisionType XY
public static final DilutionOfPrecisionType POSITION
public static final DilutionOfPrecisionType TIME
public static final DilutionOfPrecisionType GEOMETRIC
public static DilutionOfPrecisionType[] values()
for (DilutionOfPrecisionType c : DilutionOfPrecisionType.values()) System.out.println(c);
public static DilutionOfPrecisionType 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 int getValue()
getValue
in interface Enumeration
@Nonnull public static DilutionOfPrecisionType getFromValue(int value)
value
- a numeric value.@Nonnull public static DilutionOfPrecisionType getDefault()