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

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

Introduction

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

Usage

From source file dk.statsbiblioteket.netark.dvenabler.wrapper.NumericDocValuesWrapper.java

/**
 * Simple indirection wrapper. Only downside is speed.
 */
public class NumericDocValuesWrapper extends NumericDocValues {
    private static Log log = LogFactory.getLog(NumericDocValuesWrapper.class);

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

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

From source file org.elasticsearch.index.fielddata.AbstractNumericDocValues.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 #longValue()}.
 */

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

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