Package | Description |
---|---|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
org.apache.lucene.geo |
Geospatial Utility Implementations for Lucene Core
|
Modifier and Type | Method and Description |
---|---|
protected Component2D.WithinRelation |
XYShapeBoundingBoxQuery.queryWithin(byte[] t,
ShapeField.DecodedTriangle scratchTriangle) |
protected Component2D.WithinRelation |
XYShapePolygonQuery.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.
|
protected Component2D.WithinRelation |
XYShapeLineQuery.queryWithin(byte[] t,
ShapeField.DecodedTriangle scratchTriangle) |
protected Component2D.WithinRelation |
LatLonShapeLineQuery.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) |
Modifier and Type | Method and Description |
---|---|
static Component2D.WithinRelation |
Component2D.WithinRelation.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Component2D.WithinRelation[] |
Component2D.WithinRelation.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
default Component2D.WithinRelation |
Component2D.withinTriangle(double aX,
double aY,
boolean ab,
double bX,
double bY,
boolean bc,
double cX,
double cY,
boolean ca)
Compute the within relation of this component2D with a triangle
|
Component2D.WithinRelation |
Polygon2D.withinTriangle(double minX,
double maxX,
double minY,
double maxY,
double ax,
double ay,
boolean ab,
double bx,
double by,
boolean bc,
double cx,
double cy,
boolean ca) |
Component2D.WithinRelation |
Component2D.withinTriangle(double minX,
double maxX,
double minY,
double maxY,
double aX,
double aY,
boolean ab,
double bX,
double bY,
boolean bc,
double cX,
double cY,
boolean ca)
Compute the within relation of this component2D with a triangle
|
Component2D.WithinRelation |
ComponentTree.withinTriangle(double minX,
double maxX,
double minY,
double maxY,
double aX,
double aY,
boolean ab,
double bX,
double bY,
boolean bc,
double cX,
double cY,
boolean ca) |
Component2D.WithinRelation |
XYRectangle2D.withinTriangle(double minX,
double maxX,
double minY,
double maxY,
double ax,
double ay,
boolean ab,
double bx,
double by,
boolean bc,
double cx,
double cy,
boolean ca) |
Component2D.WithinRelation |
Line2D.withinTriangle(double minX,
double maxX,
double minY,
double maxY,
double ax,
double ay,
boolean ab,
double bx,
double by,
boolean bc,
double cx,
double cy,
boolean ca) |
Component2D.WithinRelation |
Rectangle2D.withinTriangle(int ax,
int ay,
boolean ab,
int bx,
int by,
boolean bc,
int cx,
int cy,
boolean ca)
Returns the Within relation to the provided triangle
|