|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.lucene.spatial.prefix.tree.Node
public abstract class Node
Represents a grid cell. These are not necessarily thread-safe, although new Cell("") (world cell) must be.
| Field Summary | |
|---|---|
static byte |
LEAF_BYTE
|
protected com.spatial4j.core.shape.SpatialRelation |
shapeRel
When set via getSubCells(filter), it is the relationship between this cell and the given shape filter. |
| Constructor Summary | |
|---|---|
protected |
Node(byte[] bytes,
int off,
int len)
|
protected |
Node(String token)
|
| Method Summary | |
|---|---|
int |
compareTo(Node o)
|
boolean |
equals(Object obj)
|
com.spatial4j.core.shape.Point |
getCenter()
|
int |
getLevel()
|
abstract com.spatial4j.core.shape.Shape |
getShape()
|
com.spatial4j.core.shape.SpatialRelation |
getShapeRel()
|
abstract Node |
getSubCell(com.spatial4j.core.shape.Point p)
Performant implementations are expected to implement this efficiently by considering the current cell's boundary. |
protected abstract Collection<Node> |
getSubCells()
Gets the cells at the next grid cell level that cover this cell. |
Collection<Node> |
getSubCells(com.spatial4j.core.shape.Shape shapeFilter)
Like getSubCells() but with the results filtered by a shape. |
abstract int |
getSubCellsSize()
getSubCells().size() -- usually a constant. |
byte[] |
getTokenBytes()
Note: doesn't contain a trailing leaf byte. |
String |
getTokenString()
Note: doesn't contain a trailing leaf byte. |
int |
hashCode()
|
boolean |
isLeaf()
For points, this is always false. |
void |
reset(byte[] bytes,
int off,
int len)
|
void |
setLeaf()
|
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final byte LEAF_BYTE
protected com.spatial4j.core.shape.SpatialRelation shapeRel
| Constructor Detail |
|---|
protected Node(String token)
protected Node(byte[] bytes,
int off,
int len)
| Method Detail |
|---|
public void reset(byte[] bytes,
int off,
int len)
public com.spatial4j.core.shape.SpatialRelation getShapeRel()
public boolean isLeaf()
public void setLeaf()
public String getTokenString()
public byte[] getTokenBytes()
public int getLevel()
public Collection<Node> getSubCells(com.spatial4j.core.shape.Shape shapeFilter)
getSubCells() but with the results filtered by a shape. If
that shape is a Point then it
must call getSubCell(com.spatial4j.core.shape.Point).
The returned cells should have their shapeRel set to their
relation with shapeFilter for non-point. As such,
isLeaf() should be
accurate.
Precondition: Never called when getLevel() == maxLevel.
shapeFilter - an optional filter for the returned cells.
public abstract Node getSubCell(com.spatial4j.core.shape.Point p)
protected abstract Collection<Node> getSubCells()
public abstract int getSubCellsSize()
getSubCells().size() -- usually a constant. Should be >=2
public abstract com.spatial4j.core.shape.Shape getShape()
public com.spatial4j.core.shape.Point getCenter()
public int compareTo(Node o)
compareTo in interface Comparable<Node>public boolean equals(Object obj)
equals in class Objectpublic int hashCode()
hashCode in class Objectpublic String toString()
toString in class Object
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||