Class Leaf<T>
- java.lang.Object
-
- dev.brachtendorf.jimagehash.datastructures.tree.binaryTree.Node
-
- dev.brachtendorf.jimagehash.datastructures.tree.binaryTree.Leaf<T>
-
- All Implemented Interfaces:
Serializable
public class Leaf<T> extends Node
A leaf node in the binary tree containing multiple values associated with a specific hash value- Author:
- Kilian
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class dev.brachtendorf.jimagehash.datastructures.tree.binaryTree.Node
leftChild, rightChild
-
-
Constructor Summary
Constructors Constructor Description Leaf()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddData(T data)Append new data to the leafbooleanequals(Object obj)ArrayList<T>getData()inthashCode()-
Methods inherited from class dev.brachtendorf.jimagehash.datastructures.tree.binaryTree.Node
createChild, getChild, setChild
-
-