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

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

Introduction

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

The text is from its open source code.

Constructor

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

Method

doubledecodeDimension(byte value[], int offset)
Decode single double dimension
voidencodeDimension(double value, byte dest[], int offset)
Encode single double dimension
QuerynewExactQuery(String field, double value)
Create a query for matching an exact double value.
QuerynewRangeQuery(String field, double lowerValue, double upperValue)
Create a range query for double values.
QuerynewRangeQuery(String field, double[] lowerValue, double[] upperValue)
Create a range query for n-dimensional double values.
QuerynewSetQuery(String field, double... 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.
doublenextDown(double d)
Return the greatest double that compares less than d consistently with Double#compare .
doublenextUp(double d)
Return the least double that compares greater than d consistently with Double#compare .
voidsetDoubleValue(double value)