Interface LongPairRangeSet.RawRangeProcessor

Enclosing interface:
LongPairRangeSet<T extends Comparable<T>>

public static interface LongPairRangeSet.RawRangeProcessor
The interface exposing a method for processing raw form of ranges. This method will omit the process to convert (long, long) to `T` create less object during the iteration. the parameter is the same as LongPairRangeSet.RangeProcessor which means (lowerKey,lowerValue) in open bound (upperKey, upperValue) in close bound in Range
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    processRawRange(long lowerKey, long lowerValue, long upperKey, long upperValue)
     
  • Method Details

    • processRawRange

      boolean processRawRange(long lowerKey, long lowerValue, long upperKey, long upperValue)