Package io.github.astrapi69.tree
Class TreeNode<T>
- java.lang.Object
-
- io.github.astrapi69.tree.TreeNode<T>
-
- Type Parameters:
T
- the generic type
- All Implemented Interfaces:
ITreeNode<T>
,java.io.Serializable
public class TreeNode<T> extends java.lang.Object implements ITreeNode<T>
The generic class TreeNode.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ITreeNode<T>>
getChildren()
Gets the children.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.github.astrapi69.tree.api.ITreeNode
addChild, addChildAt, getAllSiblings, getChild, getChildCount, getDepth, getDisplayValue, getIndexOfChild, getLevel, getNextSibling, getParent, getPreviousSibling, getRoot, getValue, hasChildren, hasParent, isLeaf, isNode, isRoot, removeChild, removeChildAt, setChildren, setDisplayValue, setParent, setValue, toList, traverse
-
-