Uses of Class
org.jivesoftware.util.LinkedListNode
Packages that use LinkedListNode
- 
Uses of LinkedListNode in org.jivesoftware.util
Fields in org.jivesoftware.util declared as LinkedListNodeMethods in org.jivesoftware.util that return LinkedListNodeModifier and TypeMethodDescriptionAdds an object to the beginning of the list by automatically creating a a new node and adding it to the beginning of the list.LinkedList.addFirst(LinkedListNode<E> node) Adds a node to the beginning of the list.Adds an object to the end of the list by automatically creating a a new node and adding it to the end of the list.LinkedList.addLast(LinkedListNode<E> node) Adds a node to the end of the list.LinkedList.getFirst()Returns the first linked list node in the list.LinkedList.getLast()Returns the last linked list node in the list.LinkedListNode.insert(LinkedListNode<E> next, LinkedListNode<E> previous) Inserts this node into the linked list that it will be a part of.LinkedListNode.remove()Removes this node from the linked list that it was a part of.Methods in org.jivesoftware.util with parameters of type LinkedListNodeModifier and TypeMethodDescriptionLinkedList.addFirst(LinkedListNode<E> node) Adds a node to the beginning of the list.LinkedList.addLast(LinkedListNode<E> node) Adds a node to the end of the list.LinkedListNode.insert(LinkedListNode<E> next, LinkedListNode<E> previous) Inserts this node into the linked list that it will be a part of.Constructors in org.jivesoftware.util with parameters of type LinkedListNodeModifierConstructorDescriptionLinkedListNode(E object, LinkedListNode<E> next, LinkedListNode<E> previous) Constructs a new linked list node.