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

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

Introduction

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

The text is from its open source code.

Constructor

LongPoint(String name, long... point)
Creates a new LongPoint, indexing the provided N-dimensional long point.

Method

longdecodeDimension(byte value[], int offset)
Decode single long dimension
voidencodeDimension(long value, byte dest[], int offset)
Encode single long dimension
QuerynewExactQuery(String field, long value)
Create a query for matching an exact long value.
QuerynewRangeQuery(String field, long lowerValue, long upperValue)
Create a range query for long values.
QuerynewRangeQuery(String field, long[] lowerValue, long[] upperValue)
Create a range query for n-dimensional long values.
QuerynewSetQuery(String field, long... values)
Create a query matching any of the specified 1D values.
QuerynewSetQuery(String field, Collection values)
Create a query matching any of the specified 1D values.
voidsetLongValue(long value)