Package | Description |
---|---|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
Modifier and Type | Method and Description |
---|---|
static void |
ShapeField.decodeTriangle(byte[] t,
ShapeField.DecodedTriangle triangle)
Decode a triangle encoded by
ShapeField.encodeTriangle(byte[], int, int, boolean, int, int, boolean, int, int, boolean) . |
protected boolean |
XYShapeBoundingBoxQuery.queryMatches(byte[] t,
ShapeField.DecodedTriangle scratchTriangle,
ShapeField.QueryRelation queryRelation)
returns true if the query matches the encoded triangle
|
protected boolean |
LatLonShapeLineQuery.queryMatches(byte[] t,
ShapeField.DecodedTriangle scratchTriangle,
ShapeField.QueryRelation queryRelation) |
protected boolean |
XYShapeLineQuery.queryMatches(byte[] t,
ShapeField.DecodedTriangle scratchTriangle,
ShapeField.QueryRelation queryRelation) |
protected boolean |
XYShapePolygonQuery.queryMatches(byte[] t,
ShapeField.DecodedTriangle scratchTriangle,
ShapeField.QueryRelation queryRelation) |
protected boolean |
LatLonShapeBoundingBoxQuery.queryMatches(byte[] t,
ShapeField.DecodedTriangle scratchTriangle,
ShapeField.QueryRelation queryRelation)
returns true if the query matches the encoded triangle
|
protected boolean |
LatLonShapePolygonQuery.queryMatches(byte[] t,
ShapeField.DecodedTriangle scratchTriangle,
ShapeField.QueryRelation queryRelation) |
protected abstract boolean |
ShapeQuery.queryMatches(byte[] triangle,
ShapeField.DecodedTriangle scratchTriangle,
ShapeField.QueryRelation queryRelation)
returns true if the provided triangle matches the query
|
protected Component2D.WithinRelation |
XYShapeBoundingBoxQuery.queryWithin(byte[] t,
ShapeField.DecodedTriangle scratchTriangle) |
protected Component2D.WithinRelation |
LatLonShapeLineQuery.queryWithin(byte[] t,
ShapeField.DecodedTriangle scratchTriangle) |
protected Component2D.WithinRelation |
XYShapeLineQuery.queryWithin(byte[] t,
ShapeField.DecodedTriangle scratchTriangle) |
protected Component2D.WithinRelation |
XYShapePolygonQuery.queryWithin(byte[] t,
ShapeField.DecodedTriangle scratchTriangle) |
protected Component2D.WithinRelation |
LatLonShapeBoundingBoxQuery.queryWithin(byte[] t,
ShapeField.DecodedTriangle scratchTriangle) |
protected Component2D.WithinRelation |
LatLonShapePolygonQuery.queryWithin(byte[] t,
ShapeField.DecodedTriangle scratchTriangle) |
protected abstract Component2D.WithinRelation |
ShapeQuery.queryWithin(byte[] triangle,
ShapeField.DecodedTriangle scratchTriangle)
Return the within relationship between the query and the indexed shape.
|