public enum DilutionOfPrecisionOptimization extends Enum<DilutionOfPrecisionOptimization> implements Enumeration
| Enum Constant and Description | 
|---|
GEOMETRIC
Optimize Best N DOP calculations on  
Geometric (get). | 
POSITION
Optimize Best N DOP calculations on  
Position (get). | 
TIME
Optimize Best N DOP calculations on  
Time (get). | 
X
Optimize Best N DOP calculations on  
X (get). | 
XY
Optimize Best N DOP calculations on  
XY (get). | 
Y
Optimize Best N DOP calculations on  
Y (get). | 
Z
Optimize Best N DOP calculations on  
Z (get). | 
| Modifier and Type | Method and Description | 
|---|---|
static DilutionOfPrecisionOptimization | 
getDefault()
Get the enum constant that is considered to be the default. 
 | 
static DilutionOfPrecisionOptimization | 
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 DilutionOfPrecisionOptimization | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DilutionOfPrecisionOptimization[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DilutionOfPrecisionOptimization X
X (get).public static final DilutionOfPrecisionOptimization Y
Y (get).public static final DilutionOfPrecisionOptimization Z
Z (get).public static final DilutionOfPrecisionOptimization XY
XY (get).public static final DilutionOfPrecisionOptimization POSITION
Position (get).public static final DilutionOfPrecisionOptimization TIME
Time (get).public static final DilutionOfPrecisionOptimization GEOMETRIC
Geometric (get).public static DilutionOfPrecisionOptimization[] values()
for (DilutionOfPrecisionOptimization c : DilutionOfPrecisionOptimization.values()) System.out.println(c);
public static DilutionOfPrecisionOptimization 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 DilutionOfPrecisionOptimization getFromValue(int value)
value - a numeric value.@Nonnull public static DilutionOfPrecisionOptimization getDefault()