Package org.orekit.utils
Class FieldTimeSpanMap.Transition<S,D extends CalculusFieldElement<D>>
- java.lang.Object
-
- org.orekit.utils.FieldTimeSpanMap.Transition<S,D>
-
- Type Parameters:
D
- type of the field elementsS
- type of the data
- All Implemented Interfaces:
TimeStamped
- Enclosing class:
- FieldTimeSpanMap<T,D extends CalculusFieldElement<D>>
public static class FieldTimeSpanMap.Transition<S,D extends CalculusFieldElement<D>> extends Object implements TimeStamped
Local class holding transition times.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldAbsoluteDate<D>
getAbsoluteDate()
Get the transition field absolute date.S
getAfter()
Get the entry valid after transition.S
getBefore()
Get the entry valid before transition.AbsoluteDate
getDate()
Get the transition absolute date.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.time.TimeStamped
durationFrom
-
-
-
-
Method Detail
-
getAbsoluteDate
public FieldAbsoluteDate<D> getAbsoluteDate()
Get the transition field absolute date.- Returns:
- transition date
-
getDate
public AbsoluteDate getDate()
Get the transition absolute date.- Specified by:
getDate
in interfaceTimeStamped
- Returns:
- transition date
-
getBefore
public S getBefore()
Get the entry valid before transition.- Returns:
- entry valid before transition
-
getAfter
public S getAfter()
Get the entry valid after transition.- Returns:
- entry valid after transition
-
-