Example usage for org.apache.lucene.index SortedNumericDocValues subclass-usage

List of usage examples for org.apache.lucene.index SortedNumericDocValues subclass-usage

Introduction

In this page you can find the example usage for org.apache.lucene.index SortedNumericDocValues subclass-usage.

Usage

From source file org.codelibs.elasticsearch.index.fielddata.SortableLongBitsSortedNumericDocValues.java

/**
 * {SortedNumericDocValues} instance that wraps a {SortedNumericDoubleValues}
 * and converts the doubles to sortable long bits using
 * {NumericUtils#doubleToSortableLong(double)}.
 */
final class SortableLongBitsSortedNumericDocValues extends SortedNumericDocValues {

From source file org.codelibs.elasticsearch.index.fielddata.SortingNumericDocValues.java

/**
 * Base class for building {SortedNumericDocValues} instances based on unsorted content.
 */
public abstract class SortingNumericDocValues extends SortedNumericDocValues {

    private int count;

From source file org.elasticsearch.index.fielddata.AbstractSortedNumericDocValues.java

/**
 * Base implementation that throws an {@link IOException} for the
 * {@link DocIdSetIterator} APIs. This impl is safe to use for sorting and
 * aggregations, which only use {@link #advanceExact(int)} and
 * {@link #docValueCount()} and {@link #nextValue()}.
 */

From source file org.elasticsearch.index.fielddata.SortableLongBitsSortedNumericDocValues.java

/**
 * {@link SortedNumericDocValues} instance that wraps a {@link SortedNumericDoubleValues}
 * and converts the doubles to sortable long bits using
 * {@link NumericUtils#doubleToSortableLong(double)}.
 */
final class SortableLongBitsSortedNumericDocValues extends SortedNumericDocValues {

From source file org.elasticsearch.index.fielddata.SortingNumericDocValues.java

/**
 * Base class for building {@link SortedNumericDocValues} instances based on unsorted content.
 */
public abstract class SortingNumericDocValues extends SortedNumericDocValues {

    private int count;