Example usage for org.apache.lucene.index IndexableField interface-usage

List of usage examples for org.apache.lucene.index IndexableField interface-usage

Introduction

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

Usage

From source file lucene.security.document.DocumentVisiblityField.java

public class DocumentVisiblityField extends Field implements IndexableField {

    public static final FieldType TYPE_NOT_STORED = new FieldType();
    public static final FieldType TYPE_STORED = new FieldType();

    static {

From source file org.apache.blur.lucene.security.document.DocumentVisiblityField.java

public class DocumentVisiblityField extends Field implements IndexableField {

    public static final FieldType TYPE_NOT_STORED = new FieldType();
    public static final FieldType TYPE_STORED = new FieldType();

    static {

From source file org.elasticsearch.index.mapper.CustomDocValuesField.java

abstract class CustomDocValuesField implements IndexableField {

    public static final FieldType TYPE = new FieldType();
    static {
        TYPE.setDocValuesType(DocValuesType.BINARY);
        TYPE.freeze();