Class DoubleRange

java.lang.Object
org.apache.lucene.search.grouping.DoubleRange

public class DoubleRange extends Object
Represents a contiguous range of double values, with an inclusive minimum and exclusive maximum
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    double
    The exclusive maximum value of this range
    double
    The inclusive minimum value of this range
  • Constructor Summary

    Constructors
    Constructor
    Description
    DoubleRange(double min, double max)
    Creates a new double range, running from min inclusive to max exclusive
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • min

      public double min
      The inclusive minimum value of this range
    • max

      public double max
      The exclusive maximum value of this range
  • Constructor Details

    • DoubleRange

      public DoubleRange(double min, double max)
      Creates a new double range, running from min inclusive to max exclusive
  • Method Details