@Immutable
public class FixedSizeListFactoryImpl
extends java.lang.Object
implements com.gs.collections.api.factory.list.FixedSizeListFactory
| Constructor and Description |
|---|
FixedSizeListFactoryImpl() |
| Modifier and Type | Method and Description |
|---|---|
<T> com.gs.collections.api.list.FixedSizeList<T> |
empty() |
<T> com.gs.collections.api.list.FixedSizeList<T> |
of()
Same as
FixedSizeListFactory.empty(). |
<T> com.gs.collections.api.list.FixedSizeList<T> |
of(T... items)
Same as
FixedSizeListFactory.with(Object[]) |
<T> com.gs.collections.api.list.FixedSizeList<T> |
of(T one)
Same as
FixedSizeListFactory.with(Object). |
<T> com.gs.collections.api.list.FixedSizeList<T> |
of(T one,
T two)
Same as
FixedSizeListFactory.with(Object, Object). |
<T> com.gs.collections.api.list.FixedSizeList<T> |
of(T one,
T two,
T three)
Same as
FixedSizeListFactory.with(Object, Object, Object). |
<T> com.gs.collections.api.list.FixedSizeList<T> |
of(T one,
T two,
T three,
T four)
Same as
FixedSizeListFactory.with(Object, Object, Object, Object). |
<T> com.gs.collections.api.list.FixedSizeList<T> |
of(T one,
T two,
T three,
T four,
T five)
Same as
FixedSizeListFactory.with(Object, Object, Object, Object, Object). |
<T> com.gs.collections.api.list.FixedSizeList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six)
Same as
FixedSizeListFactory.with(Object, Object, Object, Object, Object, Object). |
<T> com.gs.collections.api.list.FixedSizeList<T> |
ofAll(java.lang.Iterable<? extends T> items)
Same as
FixedSizeListFactory.withAll(Iterable). |
<T> com.gs.collections.api.list.FixedSizeList<T> |
with()
Same as
FixedSizeListFactory.empty(). |
<T> com.gs.collections.api.list.FixedSizeList<T> |
with(T... items) |
<T> com.gs.collections.api.list.FixedSizeList<T> |
with(T one) |
<T> com.gs.collections.api.list.FixedSizeList<T> |
with(T one,
T two) |
<T> com.gs.collections.api.list.FixedSizeList<T> |
with(T one,
T two,
T three) |
<T> com.gs.collections.api.list.FixedSizeList<T> |
with(T one,
T two,
T three,
T four) |
<T> com.gs.collections.api.list.FixedSizeList<T> |
with(T one,
T two,
T three,
T four,
T five) |
<T> com.gs.collections.api.list.FixedSizeList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six) |
<T> com.gs.collections.api.list.FixedSizeList<T> |
withAll(java.lang.Iterable<? extends T> items) |
public <T> com.gs.collections.api.list.FixedSizeList<T> empty()
empty in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> of()
com.gs.collections.api.factory.list.FixedSizeListFactoryFixedSizeListFactory.empty().of in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> with()
com.gs.collections.api.factory.list.FixedSizeListFactoryFixedSizeListFactory.empty().with in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> of(T one)
com.gs.collections.api.factory.list.FixedSizeListFactoryFixedSizeListFactory.with(Object).of in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> with(T one)
with in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> of(T one,
T two)
com.gs.collections.api.factory.list.FixedSizeListFactoryFixedSizeListFactory.with(Object, Object).of in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> with(T one,
T two)
with in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> of(T one,
T two,
T three)
com.gs.collections.api.factory.list.FixedSizeListFactoryFixedSizeListFactory.with(Object, Object, Object).of in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> with(T one,
T two,
T three)
with in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> of(T one,
T two,
T three,
T four)
com.gs.collections.api.factory.list.FixedSizeListFactoryFixedSizeListFactory.with(Object, Object, Object, Object).of in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> with(T one,
T two,
T three,
T four)
with in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> of(T one,
T two,
T three,
T four,
T five)
com.gs.collections.api.factory.list.FixedSizeListFactoryFixedSizeListFactory.with(Object, Object, Object, Object, Object).of in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> with(T one,
T two,
T three,
T four,
T five)
with in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> of(T one,
T two,
T three,
T four,
T five,
T six)
com.gs.collections.api.factory.list.FixedSizeListFactoryFixedSizeListFactory.with(Object, Object, Object, Object, Object, Object).of in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> with(T one,
T two,
T three,
T four,
T five,
T six)
with in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> of(T... items)
com.gs.collections.api.factory.list.FixedSizeListFactoryFixedSizeListFactory.with(Object[])of in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> with(T... items)
with in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> ofAll(java.lang.Iterable<? extends T> items)
com.gs.collections.api.factory.list.FixedSizeListFactoryFixedSizeListFactory.withAll(Iterable).ofAll in interface com.gs.collections.api.factory.list.FixedSizeListFactorypublic <T> com.gs.collections.api.list.FixedSizeList<T> withAll(java.lang.Iterable<? extends T> items)
withAll in interface com.gs.collections.api.factory.list.FixedSizeListFactory