Package | Description |
---|---|
_templates.javolution.util |
Modifier and Type | Class and Description |
---|---|
static class |
FastList.Node
|
static class |
FastMap.Entry
This class represents a
FastMap entry. |
class |
Index
This class represents a unique index which can be used instead of
java.lang.Integer for primitive data types collections. |
Modifier and Type | Method and Description |
---|---|
FastCollection.Record |
FastList.Node.getNext() |
FastCollection.Record |
FastCollection.Record.getNext()
Returns the record after this one.
|
FastCollection.Record |
Index.getNext() |
FastCollection.Record |
FastMap.Entry.getNext()
Returns the entry after this one.
|
FastCollection.Record |
FastList.Node.getPrevious() |
FastCollection.Record |
FastCollection.Record.getPrevious()
Returns the record before this one.
|
FastCollection.Record |
Index.getPrevious() |
FastCollection.Record |
FastMap.Entry.getPrevious()
Returns the entry before this one.
|
FastCollection.Record |
FastList.head() |
FastCollection.Record |
FastTable.head() |
abstract FastCollection.Record |
FastCollection.head()
Returns the head record of this collection; it is the record such as
head().getNext() holds the first collection value. |
FastCollection.Record |
FastBitSet.head() |
FastCollection.Record |
FastSet.head() |
FastCollection.Record |
FastList.tail() |
FastCollection.Record |
FastTable.tail() |
abstract FastCollection.Record |
FastCollection.tail()
Returns the tail record of this collection; it is the record such as
tail().getPrevious() holds the last collection value. |
FastCollection.Record |
FastBitSet.tail() |
FastCollection.Record |
FastSet.tail() |
Modifier and Type | Method and Description |
---|---|
void |
FastList.delete(FastCollection.Record record) |
void |
FastTable.delete(FastCollection.Record record) |
abstract void |
FastCollection.delete(FastCollection.Record record)
Deletes the specified record from this collection.
|
void |
FastBitSet.delete(FastCollection.Record record) |
void |
FastSet.delete(FastCollection.Record record) |
Object |
FastList.valueOf(FastCollection.Record record) |
Object |
FastTable.valueOf(FastCollection.Record record) |
abstract Object |
FastCollection.valueOf(FastCollection.Record record)
Returns the collection value for the specified record.
|
Object |
FastBitSet.valueOf(FastCollection.Record record) |
Object |
FastSet.valueOf(FastCollection.Record record) |
Copyright © 2005–2016 Javolution. All rights reserved.