public enum RinexObservationType extends Enum<RinexObservationType> implements Enumeration
Enum Constant and Description |
---|
C1
Pseudorange using C/A-Code on L1.
|
D1
Doppler frequency on L1.
|
D2
Doppler frequency on L2.
|
L1
Phase measurement on L1.
|
L2
Phase measurement on L2.
|
NONE
No type specified.
|
P1
Pseudorange using P-Code on L1.
|
P2
Pseudorange using P-Code on L2.
|
S1
Raw signal strengths or SNR values as given by the receiver for the L1 phase observation.
|
S2
Raw signal strengths or SNR values as given by the receiver for the L2 phase observation.
|
T1
Transit Integrated Doppler on 150 MHz.
|
T2
Transit Integrated Doppler on 400 MHz.
|
Modifier and Type | Method and Description |
---|---|
static RinexObservationType |
getDefault()
Get the enum constant that is considered to be the default.
|
static RinexObservationType |
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 RinexObservationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RinexObservationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RinexObservationType L1
public static final RinexObservationType L2
public static final RinexObservationType C1
public static final RinexObservationType P1
public static final RinexObservationType P2
public static final RinexObservationType D1
public static final RinexObservationType D2
public static final RinexObservationType T1
public static final RinexObservationType T2
public static final RinexObservationType S1
public static final RinexObservationType S2
public static final RinexObservationType NONE
public static RinexObservationType[] values()
for (RinexObservationType c : RinexObservationType.values()) System.out.println(c);
public static RinexObservationType 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 RinexObservationType getFromValue(int value)
value
- a numeric value.@Nonnull public static RinexObservationType getDefault()