Package com.google.common.geometry
Class S2CellIndex.CellNode
- java.lang.Object
-
- com.google.common.geometry.S2CellIndex.CellNode
-
- Enclosing class:
- S2CellIndex
private static final class S2CellIndex.CellNode extends java.lang.Object
Represents a node in the (cellId, label) tree. Cells are organized in a tree such that the ancestors of a given node contain that node.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private void
setFrom(S2CellIndex.CellNode node)
-
-
-
Field Detail
-
cellId
private S2CellId cellId
-
label
private int label
-
parent
private int parent
-
-
Constructor Detail
-
CellNode
private CellNode(S2CellId cellId, int label, int parent)
-
-
Method Detail
-
setFrom
private void setFrom(S2CellIndex.CellNode node)
-
-