Package org.arakhne.afc.math.tree
Interface IcosepTreeNodeContainer<N extends TreeNode<?,N>>
-
- Type Parameters:
N- is the type of the tree nodes.
- All Known Implementing Classes:
AbstractGISTreeSetNode,GISTreeSetNode,IcosepBinaryTreeNode,IcosepBinaryTreeNode.DefaultIcosepBinaryTreeNode,IcosepOctTreeNode,IcosepOctTreeNode.DefaultIcosepOctTreeNode,IcosepQuadTreeNode,IcosepQuadTreeNode.DefaultIcosepQuadTreeNode,WeakGISTreeSetNode
public interface IcosepTreeNodeContainer<N extends TreeNode<?,N>>This interfaces permits to define a tree node container which is containing an icosep tree node.- Since:
- 13.0
- Version:
- 17.0 2020-01-04 14:41:41
- Author:
- Stéphane GALLAND
- Maven Group Id:
- org.arakhne.afc.core
- Maven Artifact Id:
- mathtree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NgetIcosepChild()Get the icosep node of this node.booleansetIcosepChild(N newChild)Set the icosep child of this node.
-
-
-
Method Detail
-
setIcosepChild
boolean setIcosepChild(N newChild)
Set the icosep child of this node.- Parameters:
newChild- is the new child used as the icosep branch- Returns:
trueon success, otherwisefalse
-
getIcosepChild
@Pure N getIcosepChild()
Get the icosep node of this node.- Returns:
- the node that is used as the icosep branch.
-
-