| Package | Description |
|---|---|
| com.sun.jdo.spi.persistence.utility |
| 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–2019 Eclipse Foundation. All rights reserved.