Uses of Interface
com.sun.jdo.spi.persistence.utility.Linkable
-
Packages that use Linkable Package Description com.sun.jdo.spi.persistence.utility -
-
Uses of Linkable in com.sun.jdo.spi.persistence.utility
Fields in com.sun.jdo.spi.persistence.utility declared as Linkable Modifier and Type Field Description LinkableDoubleLinkedList. headHead of linked list.LinkableDoubleLinkedList. tailTail of linked list.Methods in com.sun.jdo.spi.persistence.utility that return Linkable Modifier and Type Method Description LinkableDoubleLinkedList. getHead()Return the object at the head of a linked list.LinkableLinkable. getNext()LinkableLinkable. getPrevious()LinkableDoubleLinkedList. getTail()Return the object at the tail of a linked list.LinkableDoubleLinkedList. removeFromHead()Remove and return an object from the head of a linked list.LinkableDoubleLinkedList. removeFromTail()Remove and return an object from the tail of a linked list.Methods in com.sun.jdo.spi.persistence.utility with parameters of type Linkable Modifier and Type Method Description voidDoubleLinkedList. insertAtHead(Linkable node)Insert an object at the head of a linked list.voidDoubleLinkedList. insertAtTail(Linkable node)Insert an object at the tail of a linked list.voidDoubleLinkedList. insertIntoList(Linkable afternode, Linkable newnode)Insert an object anywhere into the linked list.voidDoubleLinkedList. removeFromList(Linkable node)Remove the specified object from anywhere in the linked list.voidLinkable. setNext(Linkable node)voidLinkable. setPrevious(Linkable node)
-