| Package | Description |
|---|---|
| com.sun.jdo.spi.persistence.support.sqlstore.connection | |
| com.sun.jdo.spi.persistence.utility |
| Modifier and Type | Class and Description |
|---|---|
class |
ConnectionImpl
This class implements the
java.sql.Connection
interface, which is part of the JDBC API. |
| Modifier and Type | Method and Description |
|---|---|
Linkable |
ConnectionImpl.getNext()
Get the next ConnectionImpl in a chain.
|
Linkable |
ConnectionImpl.getPrevious()
Get the previous ConnectionImpl in a chain.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ConnectionImpl.setNext(Linkable conn)
Hook a ConnectionImpl to a chain.
|
void |
ConnectionImpl.setPrevious(Linkable conn)
Hook a ConnectionImpl to a chain.
|
| Modifier and Type | Field and Description |
|---|---|
Linkable |
DoubleLinkedList.head
Head of linked list.
|
Linkable |
DoubleLinkedList.tail
Tail of linked list.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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 © 2017. All rights reserved.