Package | Description |
---|---|
com.gs.collections.api.factory.list |
This package contains factory API for creating instances of type
ListIterable . |
com.gs.collections.impl.list.fixed |
This package contains implementations of the
FixedSizeList interface. |
Modifier and Type | Method and Description |
---|---|
<T> FixedSizeList<T> |
FixedSizeListFactory.of()
Same as
FixedSizeListFactory.with() . |
<T> FixedSizeList<T> |
FixedSizeListFactory.of(T... items)
|
<T> FixedSizeList<T> |
FixedSizeListFactory.of(T one)
Same as
FixedSizeListFactory.with(Object) . |
<T> FixedSizeList<T> |
FixedSizeListFactory.of(T one,
T two)
|
<T> FixedSizeList<T> |
FixedSizeListFactory.of(T one,
T two,
T three)
|
<T> FixedSizeList<T> |
FixedSizeListFactory.of(T one,
T two,
T three,
T four)
|
<T> FixedSizeList<T> |
FixedSizeListFactory.of(T one,
T two,
T three,
T four,
T five)
|
<T> FixedSizeList<T> |
FixedSizeListFactory.of(T one,
T two,
T three,
T four,
T five,
T six)
|
<T> FixedSizeList<T> |
FixedSizeListFactory.ofAll(Iterable<? extends T> items)
|
<T> FixedSizeList<T> |
FixedSizeListFactory.with() |
<T> FixedSizeList<T> |
FixedSizeListFactory.with(T... items) |
<T> FixedSizeList<T> |
FixedSizeListFactory.with(T one) |
<T> FixedSizeList<T> |
FixedSizeListFactory.with(T one,
T two) |
<T> FixedSizeList<T> |
FixedSizeListFactory.with(T one,
T two,
T three) |
<T> FixedSizeList<T> |
FixedSizeListFactory.with(T one,
T two,
T three,
T four) |
<T> FixedSizeList<T> |
FixedSizeListFactory.with(T one,
T two,
T three,
T four,
T five) |
<T> FixedSizeList<T> |
FixedSizeListFactory.with(T one,
T two,
T three,
T four,
T five,
T six) |
<T> FixedSizeList<T> |
FixedSizeListFactory.withAll(Iterable<? extends T> items) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMemoryEfficientMutableList<T> |
class |
ArrayAdapter<T>
This class provides a MutableList wrapper around an array.
|
Modifier and Type | Method and Description |
---|---|
FixedSizeList<T> |
AbstractMemoryEfficientMutableList.clone() |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.of() |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.of(T... items) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.of(T one) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.of(T one,
T two) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.of(T one,
T two,
T three) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.of(T one,
T two,
T three,
T four) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.of(T one,
T two,
T three,
T four,
T five) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.of(T one,
T two,
T three,
T four,
T five,
T six) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.ofAll(Iterable<? extends T> items) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.with() |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.with(T... items) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.with(T one) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.with(T one,
T two) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.with(T one,
T two,
T three) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.with(T one,
T two,
T three,
T four) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.with(T one,
T two,
T three,
T four,
T five) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.with(T one,
T two,
T three,
T four,
T five,
T six) |
<T> FixedSizeList<T> |
FixedSizeListFactoryImpl.withAll(Iterable<? extends T> items) |
Copyright © 2004–2016. All rights reserved.