public enum GpsSignalConfiguration extends Enum<GpsSignalConfiguration> implements Enumeration
Enum Constant and Description |
---|
DUAL_FREQUENCY_HANDOVER_L1CAL1PYL2PY
Tracks L1 CA first, then L1 PY and L2 PY after handover.
|
DUAL_FREQUENCY_L1CAL2C
Dual Frequency, L1 CA code, L2 C code receiver.
|
DUAL_FREQUENCY_L1CAL5IQ
Dual Frequency, L1 CA code, L5 I5 code receiver.
|
DUAL_FREQUENCY_L1PYL2PY
Dual Frequency, L1 Direct P(Y) code, L5 Direct P(Y) code receiver.
|
DUAL_FREQUENCY_L2CL5IQ
Dual Frequency, L2 C code, L5 I5 code receiver.
|
DUAL_FREQUENCY_MCODE_L1ML2M
Dual Frequency, L1 M code, L2 M code receiver.
|
SINGLE_FREQUENCY_L1CA
Single Frequency, L1 CA code receiver.
|
SINGLE_FREQUENCY_L1M
Single Frequency, L1 M code receiver.
|
SINGLE_FREQUENCY_L1PY
Single Frequency, L1 Direct P(Y) code receiver.
|
Modifier and Type | Method and Description |
---|---|
static GpsSignalConfiguration |
getDefault()
Get the enum constant that is considered to be the default.
|
static GpsSignalConfiguration |
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 GpsSignalConfiguration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GpsSignalConfiguration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GpsSignalConfiguration SINGLE_FREQUENCY_L1CA
public static final GpsSignalConfiguration SINGLE_FREQUENCY_L1M
public static final GpsSignalConfiguration SINGLE_FREQUENCY_L1PY
public static final GpsSignalConfiguration DUAL_FREQUENCY_L1CAL2C
public static final GpsSignalConfiguration DUAL_FREQUENCY_L1CAL5IQ
public static final GpsSignalConfiguration DUAL_FREQUENCY_L2CL5IQ
public static final GpsSignalConfiguration DUAL_FREQUENCY_L1PYL2PY
public static final GpsSignalConfiguration DUAL_FREQUENCY_HANDOVER_L1CAL1PYL2PY
public static final GpsSignalConfiguration DUAL_FREQUENCY_MCODE_L1ML2M
public static GpsSignalConfiguration[] values()
for (GpsSignalConfiguration c : GpsSignalConfiguration.values()) System.out.println(c);
public static GpsSignalConfiguration 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 GpsSignalConfiguration getFromValue(int value)
value
- a numeric value.@Nonnull public static GpsSignalConfiguration getDefault()