protected static class |
AbstractImmutableList.ImmutableSubList<T> |
|
(package private) class |
ImmutableArrayList<T> |
An ImmutableArrayList wraps a Java array, but it cannot be modified after creation.
|
(package private) class |
ImmutableDecapletonList<T> |
This is a ten element immutable List which is created by calling
Immutable.newListWith(one, two, three, four, five, six, seven, eight, nine, ten) method.
|
(package private) class |
ImmutableDoubletonList<T> |
This is a two element immutable List which is created by calling
Immutable.newListWith(one, two) method.
|
(package private) class |
ImmutableEmptyList<T> |
This is a zero element ImmutableList which is created by calling the Lists.immutable.empty() method.
|
(package private) class |
ImmutableNonupletonList<T> |
This is a nine element immutable List which is created by calling
Lists.immutable.with(one, two, three, four, five, six, seven, eight, nine) method.
|
(package private) class |
ImmutableOctupletonList<T> |
This is an eight element immutable List which is created by calling
Immutable.newListWith(one, two, three, four, five, six, seven, eight) method.
|
(package private) class |
ImmutableQuadrupletonList<T> |
This is a four element immutable List which is created by calling
Immutable.newListWith(one, two, three, four) method.
|
(package private) class |
ImmutableQuintupletonList<T> |
This is a five element immutable List which is created by calling
Immutable.newListWith(one, two, three, four, five) method.
|
(package private) class |
ImmutableSeptupletonList<T> |
This is a seven element immutable List which is created by calling
Immutable.newListWith(one, two, three, four, five, six, seven) method.
|
(package private) class |
ImmutableSextupletonList<T> |
This is a six element immutable List which is created by calling
Immutable.newListWith(one, two, three, four, five, six) method.
|
(package private) class |
ImmutableSingletonList<T> |
This is a single element immutable List which is created by calling
Immutable.newListWith(one) method.
|
(package private) class |
ImmutableTripletonList<T> |
This is a three element immutable List which is created by calling
Immutable.newListWith(one, two, three) method.
|