Class LtEq<T extends java.lang.Comparable<T>>

    • Constructor Detail

      • LtEq

        public LtEq​(T value,
                    FilterType filterType)
      • LtEq

        public LtEq()
    • Method Detail

      • satisfy

        public boolean satisfy​(Statistics statistics)
        Description copied from interface: Filter
        To examine whether there are data points satisfied with the filter.
        Parameters:
        statistics - statistics with min time, max time, min value, max value.
      • allSatisfy

        public boolean allSatisfy​(Statistics statistics)
        Description copied from interface: Filter
        To examine whether all data points are satisfied with the filter.
        Parameters:
        statistics - statistics with min time, max time, min value, max value.
      • satisfy

        public boolean satisfy​(long time,
                               java.lang.Object value)
        Description copied from interface: Filter
        To examine whether the single point(with time and value) is satisfied with the filter.
        Parameters:
        time - single point time
        value - single point value
      • satisfyStartEndTime

        public boolean satisfyStartEndTime​(long startTime,
                                           long endTime)
        Description copied from interface: Filter
        To examine whether the min time and max time are satisfied with the filter.
        Parameters:
        startTime - start time of a page, series or device
        endTime - end time of a page, series or device
      • containStartEndTime

        public boolean containStartEndTime​(long startTime,
                                           long endTime)
        Description copied from interface: Filter
        To examine whether the partition [startTime, endTime] is subsets of filter.
        Parameters:
        startTime - start time of a partition
        endTime - end time of a partition
      • toString

        public java.lang.String toString()
        Specified by:
        toString in class UnaryFilter<T extends java.lang.Comparable<T>>
      • reverse

        public Filter reverse()