Java org.apache.lucene.document NumericDocValuesField fields, constructors, methods, implement or subclass

Example usage for Java org.apache.lucene.document NumericDocValuesField fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.lucene.document NumericDocValuesField.

The text is from its open source code.

Field

FieldTypeTYPE
Type for numeric DocValues.

Constructor

NumericDocValuesField(String name, long value)
Creates a new DocValues field with the specified 64-bit long value
NumericDocValuesField(String name, Long value)
Creates a new DocValues field with the specified 64-bit long value

Method

QuerynewSlowExactQuery(String field, long value)
Create a query for matching an exact long value.
QuerynewSlowRangeQuery(String field, long lowerValue, long upperValue)
Create a range query that matches all documents whose value is between lowerValue and upperValue included.
voidsetLongValue(long value)
Expert: change the value of this field.