Package | Description |
---|---|
javolution.util |
Modifier and Type | Class and Description |
---|---|
static class |
FastList.Node<E>
|
static class |
FastMap.Entry<K,V>
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 |
FastCollection.Record.getNext()
Returns the record after this one.
|
FastCollection.Record |
Index.getNext() |
FastCollection.Record |
FastCollection.Record.getPrevious()
Returns the record before this one.
|
FastCollection.Record |
Index.getPrevious() |
FastCollection.Record |
FastBitSet.head() |
FastCollection.Record |
FastSet.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 |
FastTable.head() |
FastCollection.Record |
FastBitSet.tail() |
FastCollection.Record |
FastSet.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 |
FastTable.tail() |
Modifier and Type | Method and Description |
---|---|
void |
FastBitSet.delete(FastCollection.Record record) |
void |
FastList.delete(FastCollection.Record record) |
void |
FastSet.delete(FastCollection.Record record) |
abstract void |
FastCollection.delete(FastCollection.Record record)
Deletes the specified record from this collection.
|
void |
FastTable.delete(FastCollection.Record record) |
Index |
FastBitSet.valueOf(FastCollection.Record record) |
E |
FastList.valueOf(FastCollection.Record record) |
E |
FastSet.valueOf(FastCollection.Record record) |
abstract E |
FastCollection.valueOf(FastCollection.Record record)
Returns the collection value for the specified record.
|
E |
FastTable.valueOf(FastCollection.Record record) |
Copyright © 2005–2019 Javolution. All rights reserved.