Uses of Interface
com.sun.jdo.spi.persistence.utility.Linkable
-
Packages that use Linkable Package Description com.sun.jdo.spi.persistence.support.sqlstore.connection com.sun.jdo.spi.persistence.utility -
-
Uses of Linkable in com.sun.jdo.spi.persistence.support.sqlstore.connection
Classes in com.sun.jdo.spi.persistence.support.sqlstore.connection that implement Linkable Modifier and Type Class Description classConnectionImplThis class implements thejava.sql.Connectioninterface, which is part of the JDBC API.Methods in com.sun.jdo.spi.persistence.support.sqlstore.connection that return Linkable Modifier and Type Method Description LinkableConnectionImpl. getNext()Get the next ConnectionImpl in a chain.LinkableConnectionImpl. getPrevious()Get the previous ConnectionImpl in a chain.Methods in com.sun.jdo.spi.persistence.support.sqlstore.connection with parameters of type Linkable Modifier and Type Method Description voidConnectionImpl. setNext(Linkable conn)Hook a ConnectionImpl to a chain.voidConnectionImpl. setPrevious(Linkable conn)Hook a ConnectionImpl to a chain. -
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)
-