Package org.orekit.utils
Interface FieldBoundedPVCoordinatesProvider<T extends CalculusFieldElement<T>>
-
- All Superinterfaces:
FieldPVCoordinatesProvider<T>
- All Known Subinterfaces:
FieldBoundedPropagator<T>
- All Known Implementing Classes:
FieldIntegratedEphemeris
public interface FieldBoundedPVCoordinatesProvider<T extends CalculusFieldElement<T>> extends FieldPVCoordinatesProvider<T>
Interface for bounded, Field PV coordinates providers.- Since:
- 13.1
- Author:
- Romain Serra
- See Also:
FieldPVCoordinatesProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldAbsoluteDate<T>
getMaxDate()
Get the last date of the range.FieldAbsoluteDate<T>
getMinDate()
Get the first date of the range.-
Methods inherited from interface org.orekit.utils.FieldPVCoordinatesProvider
getPosition, getPVCoordinates
-
-
-
-
Method Detail
-
getMinDate
FieldAbsoluteDate<T> getMinDate()
Get the first date of the range.- Returns:
- the first date of the range
-
getMaxDate
FieldAbsoluteDate<T> getMaxDate()
Get the last date of the range.- Returns:
- the last date of the range
-
-