Uses of Class
org.apache.lucene.document.ShapeDocValues.TreeNode
-
Packages that use ShapeDocValues.TreeNode Package Description org.apache.lucene.document The logical representation of aDocument
for indexing and searching. -
-
Uses of ShapeDocValues.TreeNode in org.apache.lucene.document
Fields in org.apache.lucene.document declared as ShapeDocValues.TreeNode Modifier and Type Field Description private ShapeDocValues.TreeNode
ShapeDocValues.TreeNode. left
private ShapeDocValues.TreeNode
ShapeDocValues.TreeNode. parent
private ShapeDocValues.TreeNode
ShapeDocValues.TreeNode. right
Methods in org.apache.lucene.document that return ShapeDocValues.TreeNode Modifier and Type Method Description private ShapeDocValues.TreeNode
ShapeDocValues. buildTree(java.util.List<ShapeField.DecodedTriangle> tessellation, java.util.List<ShapeDocValues.TreeNode> dfsSerialized)
main entry point to build the tessellation tree *private ShapeDocValues.TreeNode
ShapeDocValues. createTree(ShapeDocValues.TreeNode[] triangles, int low, int high, boolean splitX, ShapeDocValues.TreeNode parent, java.util.List<ShapeDocValues.TreeNode> dfsSerialized)
creates the treeMethods in org.apache.lucene.document with parameters of type ShapeDocValues.TreeNode Modifier and Type Method Description private int
ShapeDocValues. computeComponentSize(ShapeDocValues.TreeNode node, int maxX, int maxY)
private ShapeDocValues.TreeNode
ShapeDocValues. createTree(ShapeDocValues.TreeNode[] triangles, int low, int high, boolean splitX, ShapeDocValues.TreeNode parent, java.util.List<ShapeDocValues.TreeNode> dfsSerialized)
creates the treeprivate void
ShapeDocValues.Writer. writeBounds(ShapeDocValues.TreeNode node)
private void
ShapeDocValues.Writer. writeComponent(ShapeDocValues.TreeNode node, int pMaxX, int pMaxY)
Serializes a component (POINT, LINE, or TRIANGLE) in the most compact way possibleprivate void
ShapeDocValues.Writer. writeHeader(ShapeDocValues.TreeNode node)
Writes the header metadata in the most compact way possibleprivate void
ShapeDocValues.Writer. writeNode(ShapeDocValues.TreeNode node)
Serializes a node in the most compact way possibleMethod parameters in org.apache.lucene.document with type arguments of type ShapeDocValues.TreeNode Modifier and Type Method Description private ShapeDocValues.TreeNode
ShapeDocValues. createTree(ShapeDocValues.TreeNode[] triangles, int low, int high, boolean splitX, ShapeDocValues.TreeNode parent, java.util.List<ShapeDocValues.TreeNode> dfsSerialized)
creates the treeprivate void
ShapeDocValues.Writer. writeTree(java.util.List<ShapeDocValues.TreeNode> dfsSerialized)
Constructor parameters in org.apache.lucene.document with type arguments of type ShapeDocValues.TreeNode Constructor Description Writer(java.util.List<ShapeDocValues.TreeNode> dfsSerialized)
-