Package org.orekit.time
Class PythonDatesSelector
- java.lang.Object
-
- org.orekit.time.PythonDatesSelector
-
- All Implemented Interfaces:
DatesSelector
public class PythonDatesSelector extends Object implements DatesSelector
-
-
Constructor Summary
Constructors Constructor Description PythonDatesSelector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectvoid
pythonDecRef()
Part of JCC Python interface to objectlong
pythonExtension()
Part of JCC Python interface to objectvoid
pythonExtension(long pythonObject)
Part of JCC Python interface to objectList<AbsoluteDate>
selectDates(AbsoluteDate start, AbsoluteDate end)
Select dates within an interval.
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
pythonExtension
public long pythonExtension()
Part of JCC Python interface to object
-
finalize
public void finalize() throws Throwable
Part of JCC Python interface to object
-
pythonDecRef
public void pythonDecRef()
Part of JCC Python interface to object
-
selectDates
public List<AbsoluteDate> selectDates(AbsoluteDate start, AbsoluteDate end)
Select dates within an interval. Extension point for Python.The
start
andend
date may be either in direct or reverse chronological order. The list is produced in the same order asstart
andend
, i.e. direct chronological order ifstart
is earlier thanend
or reverse chronological order ifstart
is later thanend
.The ordering (direct or reverse chronological order) should not be changed between calls, otherwise unpredictable results may occur.
- Specified by:
selectDates
in interfaceDatesSelector
- Parameters:
start
- interval startend
- interval end- Returns:
- selected dates within this interval
-
-