Example usage for org.apache.lucene.document Field subclass-usage

List of usage examples for org.apache.lucene.document Field subclass-usage

Introduction

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

Usage

From source file com.celebihacker.ml.preprocess.rcv1.indexing.types.StringFieldWithTermVectors.java

public class StringFieldWithTermVectors extends Field {

    public static final FieldType TYPE = new FieldType();

    static {
        TYPE.setIndexed(true);

From source file com.celebihacker.ml.preprocess.rcv1.indexing.types.TextFieldWithTermVectors.java

public class TextFieldWithTermVectors extends Field {

    public static final FieldType TYPE = new FieldType();

    static {
        TYPE.setIndexed(true);

From source file com.qwazr.search.field.CustomField.java

class CustomField extends Field {

    protected CustomField(String name, FieldType type, Object value) {
        super(name, type);

        if (!type.stored() && type.indexOptions() == IndexOptions.NONE)

From source file de.tuberlin.dima.cuttlefish.preprocessing.indexing.StringFieldWithTermVectors.java

public class StringFieldWithTermVectors extends Field {

    public static final FieldType TYPE = new FieldType();

    static {
        TYPE.setIndexed(true);

From source file de.tuberlin.dima.cuttlefish.preprocessing.indexing.TextFieldWithTermVectors.java

public class TextFieldWithTermVectors extends Field {

    public static final FieldType TYPE = new FieldType();

    static {
        TYPE.setIndexed(true);

From source file de.tuberlin.dima.ml.preprocess.rcv1.indexing.types.StringFieldWithTermVectors.java

public class StringFieldWithTermVectors extends Field {

    public static final FieldType TYPE = new FieldType();

    static {
        TYPE.setIndexed(true);

From source file de.tuberlin.dima.ml.preprocess.rcv1.indexing.types.TextFieldWithTermVectors.java

public class TextFieldWithTermVectors extends Field {

    public static final FieldType TYPE = new FieldType();

    static {
        TYPE.setIndexed(true);

From source file de.unihildesheim.iw.lucene.VecTextField.java

/**
 * Based on https://stackoverflow.com/a/11963832
 */
public final class VecTextField extends Field {

    /**

From source file de.walware.statet.r.internal.core.rhelp.index.FlagField.java

/**
 * @see IntField
 */
final class FlagField extends Field {

    public static final FieldType TYPE_STORED;

From source file de.walware.statet.r.internal.core.rhelp.index.StringDataField.java

abstract class StringDataField extends Field {

    StringDataField(final String name, final FieldType type) {
        super(name, type);
    }