public enum NavigationAccuracyPredictedType extends Enum<NavigationAccuracyPredictedType> implements Enumeration
Enum Constant and Description |
---|
POSITION_SIGNAL_IN_SPACE
The signal-in-space position error.
|
POSITION_TOTAL
The total position error.
|
TIME_SIGNAL_IN_SPACE
The signal-in-space time error.
|
TIME_TOTAL
The total time error.
|
XSIGNAL_IN_SPACE
The signal-in-space error in the X direction.
|
XTOTAL
The total error in the X direction.
|
XYSIGNAL_IN_SPACE
The signal-in-space error in the XY (Horizontal) direction.
|
XYTOTAL
The total error in the XY (Horizontal) direction.
|
YSIGNAL_IN_SPACE
The signal-in-space error in the Y direction.
|
YTOTAL
The total error in the Y direction.
|
ZSIGNAL_IN_SPACE
The signal-in-space error in the Z direction.
|
ZTOTAL
The total error in the Z direction.
|
Modifier and Type | Method and Description |
---|---|
static NavigationAccuracyPredictedType |
getDefault()
Get the enum constant that is considered to be the default.
|
static NavigationAccuracyPredictedType |
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 NavigationAccuracyPredictedType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NavigationAccuracyPredictedType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NavigationAccuracyPredictedType XSIGNAL_IN_SPACE
public static final NavigationAccuracyPredictedType YSIGNAL_IN_SPACE
public static final NavigationAccuracyPredictedType ZSIGNAL_IN_SPACE
public static final NavigationAccuracyPredictedType XYSIGNAL_IN_SPACE
public static final NavigationAccuracyPredictedType POSITION_SIGNAL_IN_SPACE
public static final NavigationAccuracyPredictedType TIME_SIGNAL_IN_SPACE
public static final NavigationAccuracyPredictedType XTOTAL
public static final NavigationAccuracyPredictedType YTOTAL
public static final NavigationAccuracyPredictedType ZTOTAL
public static final NavigationAccuracyPredictedType XYTOTAL
public static final NavigationAccuracyPredictedType POSITION_TOTAL
public static final NavigationAccuracyPredictedType TIME_TOTAL
public static NavigationAccuracyPredictedType[] values()
for (NavigationAccuracyPredictedType c : NavigationAccuracyPredictedType.values()) System.out.println(c);
public static NavigationAccuracyPredictedType 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 NavigationAccuracyPredictedType getFromValue(int value)
value
- a numeric value.@Nonnull public static NavigationAccuracyPredictedType getDefault()