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

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

Introduction

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

The text is from its open source code.

Constructor

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

Method

intdecodeDimension(byte value[], int offset)
Decode single integer dimension
voidencodeDimension(int value, byte dest[], int offset)
Encode single integer dimension
QuerynewExactQuery(String field, int value)
Create a query for matching an exact integer value.
QuerynewRangeQuery(String field, int lowerValue, int upperValue)
Create a range query for integer values.
QuerynewRangeQuery(String field, int[] lowerValue, int[] upperValue)
Create a range query for n-dimensional integer values.
QuerynewSetQuery(String field, int... 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.
voidsetIntValue(int value)