Uses of Class
io.prestosql.geospatial.KdbTree.Node
-
Packages that use KdbTree.Node Package Description io.prestosql.geospatial -
-
Uses of KdbTree.Node in io.prestosql.geospatial
Methods in io.prestosql.geospatial that return KdbTree.Node Modifier and Type Method Description KdbTree.NodeKdbTree. getRoot()static KdbTree.NodeKdbTree.Node. newInternal(Rectangle extent, KdbTree.Node left, KdbTree.Node right)static KdbTree.NodeKdbTree.Node. newLeaf(Rectangle extent, int leafId)Methods in io.prestosql.geospatial that return types with arguments of type KdbTree.Node Modifier and Type Method Description java.util.Optional<KdbTree.Node>KdbTree.Node. getLeft()java.util.Optional<KdbTree.Node>KdbTree.Node. getRight()Methods in io.prestosql.geospatial with parameters of type KdbTree.Node Modifier and Type Method Description static KdbTree.NodeKdbTree.Node. newInternal(Rectangle extent, KdbTree.Node left, KdbTree.Node right)Constructors in io.prestosql.geospatial with parameters of type KdbTree.Node Constructor Description KdbTree(KdbTree.Node root)Constructor parameters in io.prestosql.geospatial with type arguments of type KdbTree.Node Constructor Description Node(Rectangle extent, java.util.OptionalInt leafId, java.util.Optional<KdbTree.Node> left, java.util.Optional<KdbTree.Node> right)
-