Uses of Class
org.apache.lucene.document.ShapeDocValues
-
Packages that use ShapeDocValues Package Description org.apache.lucene.document The logical representation of aDocument
for indexing and searching. -
-
Uses of ShapeDocValues in org.apache.lucene.document
Subclasses of ShapeDocValues in org.apache.lucene.document Modifier and Type Class Description class
LatLonShapeDocValues
A concrete implementation ofShapeDocValues
for storing binary doc value representation ofLatLonShape
geometries in aLatLonShapeDocValuesField
class
XYShapeDocValues
A concrete implementation ofShapeDocValues
for storing binary doc value representation ofXYShape
geometries in aXYShapeDocValuesField
Fields in org.apache.lucene.document declared as ShapeDocValues Modifier and Type Field Description protected ShapeDocValues
ShapeDocValuesField. shapeDocValues
the binary doc value format for this fieldMethods in org.apache.lucene.document that return ShapeDocValues Modifier and Type Method Description protected abstract ShapeDocValues
BaseShapeDocValuesQuery. getShapeDocValues(BytesRef binaryValue)
protected ShapeDocValues
LatLonShapeDocValuesQuery. getShapeDocValues(BytesRef binaryValue)
protected ShapeDocValues
XYShapeDocValuesQuery. getShapeDocValues(BytesRef binaryValue)
Methods in org.apache.lucene.document with parameters of type ShapeDocValues Modifier and Type Method Description protected boolean
BaseShapeDocValuesQuery. match(ShapeDocValues shapeDocValues)
matches the doc value to the query; overridable to provide custom query logicprotected boolean
BaseShapeDocValuesQuery. matchesComponent(ShapeDocValues dv, ShapeField.QueryRelation queryRelation, Component2D component)
Constructors in org.apache.lucene.document with parameters of type ShapeDocValues Constructor Description ShapeDocValuesField(java.lang.String name, ShapeDocValues shapeDocValues)
-