T
- the type of dataKK
- type of the field elementpublic interface FieldTimeStampedCache<T extends FieldTimeStamped<KK>,KK extends org.hipparchus.CalculusFieldElement<KK>>
FieldTimeStamped
data surrounding a given
date.ImmutableFieldTimeStampedCache
Modifier and Type | Method and Description |
---|---|
T |
getEarliest()
Get the earliest entry in this cache.
|
T |
getLatest()
Get the latest entry in this cache.
|
Stream<T> |
getNeighbors(FieldAbsoluteDate<KK> central)
Get the entries surrounding a central date.
|
int |
getNeighborsSize()
Get the fixed size of the lists returned by
getNeighbors(FieldAbsoluteDate) . |
Stream<T> getNeighbors(FieldAbsoluteDate<KK> central)
If the central date is well within covered range, the returned array will be balanced with half the points before central date and half the points after it (depending on n parity, of course). If the central date is near the boundary, then the returned array will be unbalanced and will contain only the n earliest (or latest) entries. A typical example of the later case is leap seconds cache, since the number of leap seconds cannot be arbitrarily increased.
This method is safe for multiple threads to execute concurrently.
central
- central dategetNeighborsSize()
.int getNeighborsSize()
getNeighbors(FieldAbsoluteDate)
.T getEarliest() throws IllegalStateException
IllegalStateException
- if this cache is emptyT getLatest() throws IllegalStateException
IllegalStateException
- if this cache is emptyCopyright © 2002-2023 CS GROUP. All rights reserved.