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