public class ListNode { public Object data; public ListNode next; public ListNode(Object ListNode){ this.data = ListNode; this.next = null; } public ListNode(Object ListNode, ListNode next){ this.data = ListNode; this.next = next; } }