public enum NavigationSignalType extends Enum<NavigationSignalType> implements Enumeration
Enum Constant and Description |
---|
GPSL1C
L1 frequency, C code.
|
GPSL1CA
L1 frequency, CA code.
|
GPSL1M
L1 frequency, M code.
|
GPSL1PY
L1 frequency, P(Y) code.
|
GPSL2C
L2 frequency C code.
|
GPSL2M
L2 frequency M code.
|
GPSL2PY
L2 frequency P(Y) code.
|
GPSL5IQ
L2 frequency IQ code.
|
Modifier and Type | Method and Description |
---|---|
static NavigationSignalType |
getDefault()
Get the enum constant that is considered to be the default.
|
static NavigationSignalType |
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 NavigationSignalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NavigationSignalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NavigationSignalType GPSL1CA
public static final NavigationSignalType GPSL1PY
public static final NavigationSignalType GPSL1M
public static final NavigationSignalType GPSL1C
public static final NavigationSignalType GPSL2PY
public static final NavigationSignalType GPSL2C
public static final NavigationSignalType GPSL2M
public static final NavigationSignalType GPSL5IQ
public static NavigationSignalType[] values()
for (NavigationSignalType c : NavigationSignalType.values()) System.out.println(c);
public static NavigationSignalType 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 NavigationSignalType getFromValue(int value)
value
- a numeric value.@Nonnull public static NavigationSignalType getDefault()