Class Node
- java.lang.Object
-
- dev.brachtendorf.jimagehash.datastructures.tree.binaryTree.Node
-
- All Implemented Interfaces:
Serializable
public class Node extends Object implements Serializable
A tree node saving references to it's children.- Author:
- Kilian
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description NodeleftChildNoderightChild
-
Constructor Summary
Constructors Constructor Description Node()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NodecreateChild(boolean left)Create and set a child of the current nodebooleanequals(Object obj)NodegetChild(boolean left)inthashCode()NodesetChild(boolean left, Node newNode)
-