Package | Description |
---|---|
agi.foundation.navigation.advanced |
Contains types used in GPS communications modeling.
|
Modifier and Type | Method and Description |
---|---|
static NavigationSignalPriority |
NavigationSignalPriority.getDefault()
Get the enum constant that is considered to be the default.
|
static NavigationSignalPriority |
NavigationSignalPriority.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
NavigationSignalPriority |
NavigationSignal.getPriority()
Gets the priority of this signal, used when more than one
NavigationSignal is available. |
static NavigationSignalPriority |
NavigationSignalPriority.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NavigationSignalPriority[] |
NavigationSignalPriority.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
boolean |
NavigationSignalCollection.containsPriority(NavigationSignalPriority priority)
Determines whether the collection contains a
NavigationSignal with the
specified NavigationSignalPriority . |
NavigationSignal |
NavigationSignalCollection.findFirst(NavigationSignalPriority priority)
Finds the first
NavigationSignal in this collection that has the specified priority. |
NavigationSignal |
NavigationReceiverChannel.findFirst(NavigationSignalPriority priority)
Finds the first
NavigationSignal in this NavigationReceiverChannel that has the specified priority. |
void |
NavigationSignal.setPriority(NavigationSignalPriority value)
Sets the priority of this signal, used when more than one
NavigationSignal is available. |
Constructor and Description |
---|
NavigationSignal(NavigationSignalType signalType,
NavigationSignalPriority priority,
NavigationSignalTrackingType tracking,
int satelliteID,
double carrierToNoiseThreshold)
Constructs a trackable signal for a navigation communications front end, specifying all parameters except the link.
|