package be.brainbaking.datastructures.hashtable; public class HashBucket { private final T key; public HashBucket(T key) { this.key = key; } }