Uses of Interface
com.sun.jdo.spi.persistence.utility.Linkable

Packages that use Linkable
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
 Linkable DoubleLinkedList.head
          Head of linked list.
 Linkable DoubleLinkedList.tail
          Tail of linked list.
 

Methods in com.sun.jdo.spi.persistence.utility that return Linkable
 Linkable DoubleLinkedList.getHead()
          Return the object at the head of a linked list.
 Linkable Linkable.getNext()
           
 Linkable Linkable.getPrevious()
           
 Linkable DoubleLinkedList.getTail()
          Return the object at the tail of a linked list.
 Linkable DoubleLinkedList.removeFromHead()
          Remove and return an object from the head of a linked list.
 Linkable DoubleLinkedList.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
 void DoubleLinkedList.insertAtHead(Linkable node)
          Insert an object at the head of a linked list.
 void DoubleLinkedList.insertAtTail(Linkable node)
          Insert an object at the tail of a linked list.
 void DoubleLinkedList.insertIntoList(Linkable afternode, Linkable newnode)
          Insert an object anywhere into the linked list.
 void DoubleLinkedList.removeFromList(Linkable node)
          Remove the specified object from anywhere in the linked list.
 void Linkable.setNext(Linkable node)
           
 void Linkable.setPrevious(Linkable node)
           
 



Copyright © 2012 GlassFish Community. All Rights Reserved.