Class Node<T>

java.lang.Object
com.weirddev.testme.intellij.utils.Node<T>

public class Node<T> extends Object
Date: 05/03/2017
Author:
Yaron Yamin
  • Constructor Details

    • Node

      public Node(T data, Node<T> parent, int depth)
  • Method Details

    • getData

      public T getData()
    • getParent

      public Node<T> getParent()
    • getDepth

      public int getDepth()
    • hasSameAncestor

      public boolean hasSameAncestor()
    • hasSameAncestor

      public boolean hasSameAncestor(T data)