Interface INestedSetNode
-
- All Implemented Interfaces:
public interface INestedSetNode<ID extends Object, T extends INestedSetNode<ID, T>>Interface representing a node in a nested set tree structure. This interface defines the basic properties and methods for a nested set node.
-
-
Method Summary
Modifier and Type Method Description abstract IDgetId()The unique identifier of the node. abstract IntegergetLeft()The left value of the node in the nested set. abstract UnitsetLeft(Integer left)The left value of the node in the nested set. abstract IntegergetRight()The right value of the node in the nested set. abstract UnitsetRight(Integer right)The right value of the node in the nested set. abstract TgetParent()The level of the node in the nested set tree. abstract UnitsetParent(T parent)The level of the node in the nested set tree.
-