public void insertAfterNext(LLNode node) { if(this.getNext() != null){ this.getNext().insertAfter(node); } else { this.insertAfter(node); } }