public enum TrackingMode extends Enum<TrackingMode>
Enum Constant and Description |
---|
SEQUENTIAL
Sequential mode, applies to range, Doppler, angles and line-of-sighe ionosphere calibration.
|
SINGLE_DIFF
Single diff mode, applies to differenced data.
|
Modifier and Type | Method and Description |
---|---|
static TrackingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrackingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackingMode SEQUENTIAL
public static final TrackingMode SINGLE_DIFF
public static TrackingMode[] values()
for (TrackingMode c : TrackingMode.values()) System.out.println(c);
public static TrackingMode 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 nullCopyright © 2002-2022 CS GROUP. All rights reserved.