Interface PathNodeEx<T extends PathNodeEx<T>>

  • All Superinterfaces:
    PathNode<T>

    public interface PathNodeEx<T extends PathNodeEx<T>>
    extends PathNode<T>
    Smarter path node. Implementing this interface will increase search velocity.
    Author:
    Sergey.Pak
    • Method Detail

      • getParent

        @Nullable
        T getParent()
        Returns:
        node parent (null for root node)
      • getChild

        @Nullable
        T getChild​(@NotNull
                   java.lang.String childName)
        Parameters:
        childName - child name
        Returns:
        node child by name (if one exists)