Class IntRangeDocValuesField

All Implemented Interfaces:
IndexableField

public class IntRangeDocValuesField extends BinaryDocValuesField
DocValues field for IntRange. This is a single valued field per document due to being an extension of BinaryDocValuesField.
  • Constructor Details

    • IntRangeDocValuesField

      public IntRangeDocValuesField(String field, int[] min, int[] max)
      Sole constructor.
  • Method Details

    • getMin

      public int getMin(int dimension)
      Get the minimum value for the given dimension.
    • getMax

      public int getMax(int dimension)
      Get the maximum value for the given dimension.
    • newSlowIntersectsQuery

      public static Query newSlowIntersectsQuery(String field, int[] min, int[] max)
      Create a new range query that finds all ranges that intersect using doc values. NOTE: This doesn't leverage indexing and may be slow.
      See Also: