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

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

Introduction

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

Usage

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

/**
 * Memory-intensive transformer: All values are stored as String in (gasp) a Set and a List.
 */
public class SortedDocValuesWrapper extends SortedDocValues {
    private static Log log = LogFactory.getLog(SortedDocValuesWrapper.class);

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