Uses of Class
org.jivesoftware.util.LinkedListNode
-
Packages that use LinkedListNode Package Description org.jivesoftware.util Utility classes. -
-
Uses of LinkedListNode in org.jivesoftware.util
Fields in org.jivesoftware.util declared as LinkedListNode Modifier and Type Field Description LinkedListNode<E>LinkedListNode. nextLinkedListNode<E>LinkedListNode. previousMethods in org.jivesoftware.util that return LinkedListNode Modifier and Type Method Description LinkedListNode<E>LinkedList. addFirst(E object)Adds an object to the beginning of the list by automatically creating a a new node and adding it to the beginning of the list.LinkedListNode<E>LinkedList. addFirst(LinkedListNode<E> node)Adds a node to the beginning of the list.LinkedListNode<E>LinkedList. addLast(E object)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.LinkedListNode<E>LinkedList. addLast(LinkedListNode<E> node)Adds a node to the end of the list.LinkedListNode<E>LinkedList. getFirst()Returns the first linked list node in the list.LinkedListNode<E>LinkedList. getLast()Returns the last linked list node in the list.LinkedListNode<E>LinkedListNode. insert(LinkedListNode<E> next, LinkedListNode<E> previous)Inserts this node into the linked list that it will be a part of.LinkedListNode<E>LinkedListNode. remove()Removes this node from the linked list that it was a part of.Methods in org.jivesoftware.util with parameters of type LinkedListNode Modifier and Type Method Description LinkedListNode<E>LinkedList. addFirst(LinkedListNode<E> node)Adds a node to the beginning of the list.LinkedListNode<E>LinkedList. addLast(LinkedListNode<E> node)Adds a node to the end of the list.LinkedListNode<E>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 LinkedListNode Constructor Description LinkedListNode(E object, LinkedListNode<E> next, LinkedListNode<E> previous)Constructs a new linked list node.
-