Uses of Class
mtree.LeafNode

Packages that use LeafNode
mtree   
mtree.utils   
 

Uses of LeafNode in mtree
 

Methods in mtree that return types with arguments of type LeafNode
 java.util.List<LeafNode> MTree.getAllLeaves()
          Returns a list of all leaves of the tree.
 

Methods in mtree with parameters of type LeafNode
protected  void MTree.processNode(LeafNode node, java.util.Map<messif.objects.LocalAbstractObject,java.lang.Float> pd, messif.operations.query.KNNQueryOperation kNNOper)
          Process a leaf node from M-Tree queue.
protected  void MTree.processNode(LeafNode node, SearchQueue<java.io.Serializable> queue, messif.objects.LocalAbstractObject queryObject)
          Process a leaf node from M-Tree queue.
 

Uses of LeafNode in mtree.utils
 

Methods in mtree.utils that return LeafNode
static LeafNode Insert.findNearestLeafList(messif.objects.LocalAbstractObject q, Node n)
          Returns a leaf which is the most convenient for inserting new object.
 

Methods in mtree.utils that return types with arguments of type LeafNode
static java.util.List<LeafNode> Search.findLeavesByQuery(Node n, messif.objects.LocalAbstractObject q, float r)
          Looks for all leaves which are incident to the region R(q, r).
static java.util.List<LeafNode> Search.findLeavesByQuery(Node n, messif.objects.LocalAbstractObject q, float r, java.util.Map<messif.objects.LocalAbstractObject,java.lang.Float> pd)
          Looks for all leaves which are incident to the region R(q, r).
 

Method parameters in mtree.utils with type arguments of type LeafNode
static void Search.getAllLeaves(Node n, java.util.List<LeafNode> leaves)
          Looks for all leaves of the subtree determined by node n.