/* * Kyle Pierce * CSE 143 * * Represents a single node in the chain in the hash table */ public class HashNode { public E data; public HashNode next; /* * Constructs a new node with the given value and next link */ public HashNode(E data, HashNode next) { this.data = data; this.next = next; } }