Example usage for org.apache.lucene.document BinaryDocValuesField TYPE

List of usage examples for org.apache.lucene.document BinaryDocValuesField TYPE

Introduction

In this page you can find the example usage for org.apache.lucene.document BinaryDocValuesField TYPE.

Prototype

FieldType TYPE

To view the source code for org.apache.lucene.document BinaryDocValuesField TYPE.

Click Source Link

Document

Type for straight bytes DocValues.

Usage

From source file:com.ibm.watson.developer_cloud.professor_languo.ingestion.indexing.LuceneDocumentMapper.java

License:Open Source License

@Override
public List<FieldType> getFieldTypes() {
    return Arrays.asList(IntField.TYPE_STORED, TextField.TYPE_STORED, TextField.TYPE_STORED,
            TextField.TYPE_STORED, TextField.TYPE_STORED, TextField.TYPE_STORED, TextField.TYPE_NOT_STORED,
            BinaryDocValuesField.TYPE);
}