FieldAbsoluteDate, FieldAttitude, FieldBodiesElements, FieldCartesianOrbit, FieldCircularOrbit, FieldDateDetector, FieldDelaunayArguments, FieldEquinoctialOrbit, FieldKeplerianOrbit, FieldOrbit, FieldSpacecraftStatepublic interface FieldTimeStamped<T extends RealFieldElement<T>>
AbsoluteDate
date attached to them.
Classes implementing this interface can be stored chronologically
in sorted sets using ChronologicalComparator as the
underlying comparator. An example using for Orbit instances is given here:
SortedSet<Orbit> sortedOrbits =
new TreeSet<Orbit>(new ChronologicalComparator());
sortedOrbits.add(orbit1);
sortedOrbits.add(orbit2);
...
This interface is also the base interface used to cache series of time-dependent
objects for interpolation in a thread-safe manner.
AbsoluteDate,
ChronologicalComparator,
TimeStampedCache| Modifier and Type | Method | Description |
|---|---|---|
FieldAbsoluteDate<T> |
getDate() |
Get the date.
|
FieldAbsoluteDate<T> getDate()
Copyright © 2002-2018 CS Systèmes d'information. All rights reserved.