Class TNode

java.lang.Object
edu.mit.simile.vicino.vptree.TNode
All Implemented Interfaces:
Serializable

public class TNode extends Object implements Serializable
Author:
Paolo Ciccarese
See Also:
  • Constructor Details

    • TNode

      public TNode(Serializable obj)
      The Object will be fixed during the instantiation of the node, while the children will be defined in another iteration of the algorithm,
  • Method Details

    • get

      public Serializable get()
    • setMedian

      public void setMedian(double median)
    • getMedian

      public double getMedian()
    • setLeft

      public void setLeft(TNode leftNode)
    • getLeft

      public TNode getLeft()
    • setRight

      public void setRight(TNode rightNode)
    • getRight

      public TNode getRight()
    • toString

      public String toString()
      Overrides:
      toString in class Object