public interface FieldTimeStamped<T extends CalculusFieldElement<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 and Description |
---|---|
FieldAbsoluteDate<T> |
getDate()
Get the date.
|
FieldAbsoluteDate<T> getDate()
Copyright © 2002-2022 CS GROUP. All rights reserved.