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

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

Introduction

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

Usage

From source file com.vmware.xenon.services.common.DocumentStoredFieldVisitor.java

/**
 * Copy of lucene class - the only change is that the doc field is resetable.
 *
 * @see org.apache.lucene.document.DocumentStoredFieldVisitor
 */
final class DocumentStoredFieldVisitor extends StoredFieldVisitor {

From source file org.apache.blur.utils.ResetableDocumentStoredFieldVisitor.java

/**
 * A {@link StoredFieldVisitor} that creates a {@link Document} containing all
 * stored fields, or only specific requested fields provided to
 * {@link #DocumentStoredFieldVisitor(Set)}.
 * <p>
 * This is used by {@link IndexReader#document(int)} to load a document.

From source file org.elasticsearch.index.fieldvisitor.FieldsVisitor.java

/**
 */
public abstract class FieldsVisitor extends StoredFieldVisitor {

    protected BytesReference source;
    protected Uid uid;

From source file org.geotoolkit.lucene.index.IDFieldSelector.java

/**
 * A Lucene field selector, allowing to retrieve only the field containg the identifiers of the document.
 *
 * @author Guilhem Legal (Geomatys)
 */
public final class IDFieldSelector extends StoredFieldVisitor {

From source file org.hibernate.search.backend.lucene.search.query.impl.ReusableDocumentStoredFieldVisitor.java

/**
 * Inspired by Lucene's DocumentStoredFieldVisitor, with the difference that we want
 * to reuse the same FieldVisitor to load multiple Document instances.
 * Also the accepted fields are kept in a linked-list like structure, to optimize
 * for small amounts of accepted fields.
 *

From source file org.hibernate.search.query.engine.impl.ReusableDocumentStoredFieldVisitor.java

/**
 * Inspired by Lucene's DocumentStoredFieldVisitor, with the difference that we want
 * to reuse the same FieldVisitor to load multiple Document instances.
 * Also the accepted fields are kept in a linked-list like structure, to optimize
 * for small amounts of accepted fields.
 *

From source file org.openedit.data.lucene.SearchResultStoredFieldVisitor.java

/**
 * A {@link StoredFieldVisitor} that creates a {@link Document} containing all
 * stored fields, or only specific requested fields provided to
 * {@link #DocumentStoredFieldVisitor(Set)}.
 * <p>
 * This is used by {@link IndexReader#document(int)} to load a document.