Class PythonDatesSelector

    • Constructor Detail

      • PythonDatesSelector

        public PythonDatesSelector()
    • 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
      • 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 and end date may be either in direct or reverse chronological order. The list is produced in the same order as start and end, i.e. direct chronological order if start is earlier than end or reverse chronological order if start is later than end.

        The ordering (direct or reverse chronological order) should not be changed between calls, otherwise unpredictable results may occur.

        Specified by:
        selectDates in interface DatesSelector
        Parameters:
        start - interval start
        end - interval end
        Returns:
        selected dates within this interval