| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.bytes |
Provides type-specific classes for byte elements or keys.
|
| it.unimi.dsi.fastutil.chars |
Provides type-specific classes for character elements or keys.
|
| it.unimi.dsi.fastutil.ints |
Provides type-specific classes for integer elements or keys.
|
| it.unimi.dsi.fastutil.longs |
Provides type-specific classes for long elements or keys.
|
| it.unimi.dsi.fastutil.objects |
Provides type-specific classes for object elements or keys.
|
| it.unimi.dsi.fastutil.shorts |
Provides type-specific classes for short elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ByteArrayFrontCodedList
Compact storage of lists of arrays using front coding.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CharArrayFrontCodedList
Compact storage of lists of arrays using front coding.
|
| Modifier and Type | Class and Description |
|---|---|
class |
IntArrayFrontCodedList
Compact storage of lists of arrays using front coding.
|
| Modifier and Type | Class and Description |
|---|---|
class |
LongArrayFrontCodedList
Compact storage of lists of arrays using front coding.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractObjectList<K>
An abstract class providing basic methods for lists implementing a type-specific list interface.
|
static class |
AbstractObjectList.ObjectSubList<K>
A class implementing a sublist view.
|
class |
ObjectArrayList<K>
A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.
|
static class |
ObjectLists.EmptyList<K>
An immutable class representing an empty type-specific list.
|
static class |
ObjectLists.Singleton<K>
An immutable class representing a type-specific singleton list.
|
static class |
ObjectLists.SynchronizedList<K>
A synchronized wrapper class for lists.
|
static class |
ObjectLists.SynchronizedRandomAccessList<K>
A synchronized wrapper class for random-access lists.
|
static class |
ObjectLists.UnmodifiableList<K>
An unmodifiable wrapper class for lists.
|
static class |
ObjectLists.UnmodifiableRandomAccessList<K>
An unmodifiable wrapper class for random-access lists.
|
| Modifier and Type | Field and Description |
|---|---|
protected ObjectList<K> |
AbstractObjectList.ObjectSubList.l
The list this sublist restricts.
|
protected ObjectList<K> |
ObjectLists.SynchronizedList.list |
protected ObjectList<K> |
ObjectLists.UnmodifiableList.list |
| Modifier and Type | Method and Description |
|---|---|
static <K> ObjectList<K> |
ObjectLists.emptyList()
Returns an empty list (immutable).
|
static <K> ObjectList<K> |
ObjectIterators.pour(Iterator<K> i)
Pours an iterator, returning a type-specific list.
|
static <K> ObjectList<K> |
ObjectIterators.pour(Iterator<K> i,
int max)
Pours an iterator, returning a type-specific list, with a limit on the number of elements.
|
static <K> ObjectList<K> |
ObjectLists.shuffle(ObjectList<K> l,
Random random)
Shuffles the specified list using the specified pseudorandom number generator.
|
static <K> ObjectList<K> |
ObjectLists.singleton(K element)
Returns a type-specific immutable list containing only the specified element.
|
ObjectList<K> |
ObjectLists.EmptyList.subList(int from,
int to) |
ObjectList<K> |
ObjectLists.Singleton.subList(int from,
int to) |
ObjectList<K> |
ObjectLists.SynchronizedList.subList(int from,
int to) |
ObjectList<K> |
ObjectLists.SynchronizedRandomAccessList.subList(int from,
int to) |
ObjectList<K> |
ObjectLists.UnmodifiableList.subList(int from,
int to) |
ObjectList<K> |
ObjectLists.UnmodifiableRandomAccessList.subList(int from,
int to) |
ObjectList<K> |
ObjectList.subList(int from,
int to)
Returns a type-specific view of the portion of this list from the index
from, inclusive, to the index to, exclusive. |
ObjectList<K> |
AbstractObjectList.subList(int from,
int to) |
ObjectList<K> |
AbstractObjectList.ObjectSubList.subList(int from,
int to) |
static <K> ObjectList<K> |
ObjectLists.synchronize(ObjectList<K> l)
Returns a synchronized type-specific list backed by the given type-specific list.
|
static <K> ObjectList<K> |
ObjectLists.synchronize(ObjectList<K> l,
Object sync)
Returns a synchronized type-specific list backed by the given type-specific list, using an assigned object to synchronize.
|
static <K> ObjectList<K> |
ObjectLists.unmodifiable(ObjectList<K> l)
Returns an unmodifiable type-specific list backed by the given type-specific list.
|
| Modifier and Type | Method and Description |
|---|---|
static <K> ObjectBigList<K> |
ObjectBigLists.asBigList(ObjectList<K> list)
Returns a big list backed by the specified list.
|
static <K> ObjectList<K> |
ObjectLists.shuffle(ObjectList<K> l,
Random random)
Shuffles the specified list using the specified pseudorandom number generator.
|
static <K> ObjectList<K> |
ObjectLists.synchronize(ObjectList<K> l)
Returns a synchronized type-specific list backed by the given type-specific list.
|
static <K> ObjectList<K> |
ObjectLists.synchronize(ObjectList<K> l,
Object sync)
Returns a synchronized type-specific list backed by the given type-specific list, using an assigned object to synchronize.
|
static <K> ObjectList<K> |
ObjectLists.unmodifiable(ObjectList<K> l)
Returns an unmodifiable type-specific list backed by the given type-specific list.
|
| Constructor and Description |
|---|
ListBigList(ObjectList<K> list) |
ObjectArrayList(ObjectList<? extends K> l)
Creates a new array list and fills it with a given type-specific list.
|
ObjectSubList(ObjectList<K> l,
int from,
int to) |
SynchronizedList(ObjectList<K> l) |
SynchronizedList(ObjectList<K> l,
Object sync) |
SynchronizedRandomAccessList(ObjectList<K> l) |
SynchronizedRandomAccessList(ObjectList<K> l,
Object sync) |
UnmodifiableList(ObjectList<K> l) |
UnmodifiableRandomAccessList(ObjectList<K> l) |
| Modifier and Type | Class and Description |
|---|---|
class |
ShortArrayFrontCodedList
Compact storage of lists of arrays using front coding.
|
Copyright © 2020. All rights reserved.