Uses of Class
mtree.NodeEntry

Packages that use NodeEntry
mtree   
mtree.utils   
 

Uses of NodeEntry in mtree
 

Methods in mtree that return NodeEntry
 NodeEntry InternalNode.createNodeEntry(messif.objects.LocalAbstractObject p, Node subtree, int nhr)
          Creates a new node entry in this node.
 NodeEntry InternalNode.createNodeEntry(NodeEntry ne)
          Adds the specified node entry into this node.
 NodeEntry InternalNode.getNodeEntry(int pos)
          Returns the node entry at specified position.
 NodeEntry InternalNode.getNodeEntry(messif.objects.LocalAbstractObject o)
          Returns the node entry selected by an object stored in it.
 NodeEntry Node.getParentNodeEntry()
          Returns the parent node entry pointing to this node.
 

Methods in mtree that return types with arguments of type NodeEntry
 java.util.List<NodeEntry> InternalNode.getNodeEntryList()
          Returns a list of stored node entries of this node.
 

Methods in mtree with parameters of type NodeEntry
 NodeEntry InternalNode.createNodeEntry(NodeEntry ne)
          Adds the specified node entry into this node.
 boolean InternalNode.removeNodeEntry(NodeEntry ne)
          Removes the specified node entry from this node.
 boolean InternalNode.removeNodeEntry(NodeEntry ne, java.util.Iterator<NodeEntry> nodeEntryIterator)
          Removes the specified node entry from this node.
 

Method parameters in mtree with type arguments of type NodeEntry
 boolean InternalNode.removeNodeEntry(NodeEntry ne, java.util.Iterator<NodeEntry> nodeEntryIterator)
          Removes the specified node entry from this node.
 

Constructors in mtree with parameters of type NodeEntry
InternalNode(int level, NodeEntry parentNodeEntry, long softCapacity)
          Constructors
LeafNode(NodeEntry parentNodeEntry, messif.buckets.LocalBucket bucket)
          Constructors
Node(int level, NodeEntry parentNodeEntry)
          Constructors
 

Uses of NodeEntry in mtree.utils
 

Methods in mtree.utils with parameters of type NodeEntry
static boolean Search.filterApproxNodeEntry(NodeEntry ne, float oParentDist, messif.objects.LocalAbstractObject q, float qParentDist, float r)
          Decides whether the specified node entry could be filtered.
static boolean Search.filterNodeEntry(NodeEntry ne, float oParentDist, messif.objects.LocalAbstractObject q, float qParentDist, float r)
          Decides whether the specified node entry could be filtered.
static boolean Search.filterNodeEntryUsingPivots(NodeEntry ne, messif.objects.LocalAbstractObject q, float r)
          Decides whether the specified node entry could be filtered in the sense of filtering using HR array.
 

Method parameters in mtree.utils with type arguments of type NodeEntry
static Node Insert.deleteSlimNodes(Node n, java.util.Iterator<NodeEntry> nodeEntryIterator)
          Deletes empty nodes from the tree recursively (from a node n towards the root of the tree).