Serialized Form
-
Package io.github.astrapi69.gen.tree
-
Class io.github.astrapi69.gen.tree.BaseTreeNode extends java.lang.Object implements Serializable
-
Serialized Fields
-
children
java.util.Collection<BaseTreeNode<T,K>> children
The children. -
displayValue
java.lang.String displayValue
The optional display value. -
id
K id
The id from this node. -
leaf
boolean leaf
The flag that indicates if this tree node is a leaf or a node -
parent
BaseTreeNode<T,K> parent
The parent from this node. If this is null it is the root. -
value
T value
The value.
-
-
-
Class io.github.astrapi69.gen.tree.TreeNode extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
children
java.util.Collection<TreeNode<T>> children
The children. -
displayValue
java.lang.String displayValue
The optional display value. -
leaf
boolean leaf
The flag that indicates if this tree node is a leaf or a node -
parent
TreeNode<T> parent
The parent from this node. If this is null it is the root. -
value
T value
The value.
-
-
-
Package io.github.astrapi69.gen.tree.api