@Immutable
public final class ImmutableListFactoryImpl
extends java.lang.Object
implements com.gs.collections.api.factory.list.ImmutableListFactory
| Constructor and Description |
|---|
ImmutableListFactoryImpl() |
| Modifier and Type | Method and Description |
|---|---|
<T> com.gs.collections.api.list.ImmutableList<T> |
empty() |
<T> com.gs.collections.api.list.ImmutableList<T> |
of()
Same as
ImmutableListFactory.empty(). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T... items)
Same as
ImmutableListFactory.with(Object[]). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T one)
Same as
ImmutableListFactory.with(Object). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T one,
T two)
Same as
ImmutableListFactory.with(Object, Object). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T one,
T two,
T three)
Same as
ImmutableListFactory.with(Object, Object, Object). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T one,
T two,
T three,
T four)
Same as
ImmutableListFactory.with(Object, Object, Object, Object). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five)
Same as
ImmutableListFactory.with(Object, Object, Object, Object, Object). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six)
Same as
ImmutableListFactory.with(Object, Object, Object, Object, Object, Object). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six,
T seven)
Same as
ImmutableListFactory.with(Object, Object, Object, Object, Object, Object, Object). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight)
Same as
ImmutableListFactory.with(Object, Object, Object, Object, Object, Object, Object, Object). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine)
Same as
ImmutableListFactory.with(Object, Object, Object, Object, Object, Object, Object, Object, Object). |
<T> com.gs.collections.api.list.ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine,
T ten)
Same as
ImmutableListFactory.with(Object, Object, Object, Object, Object, Object, Object, Object, Object, Object). |
<T> com.gs.collections.api.list.ImmutableList<T> |
ofAll(java.lang.Iterable<? extends T> items)
Same as
ImmutableListFactory.withAll(Iterable). |
<T> com.gs.collections.api.list.ImmutableList<T> |
with()
Same as
ImmutableListFactory.empty(). |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T... items) |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T one) |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T one,
T two) |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T one,
T two,
T three) |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T one,
T two,
T three,
T four) |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five) |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six) |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six,
T seven) |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight) |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine) |
<T> com.gs.collections.api.list.ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine,
T ten) |
<T> com.gs.collections.api.list.ImmutableList<T> |
withAll(java.lang.Iterable<? extends T> items) |
public <T> com.gs.collections.api.list.ImmutableList<T> empty()
empty in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of()
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.empty().of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with()
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.empty().with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T one)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T one)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T one,
T two)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object, Object).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T one,
T two)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T one,
T two,
T three)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object, Object, Object).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T one,
T two,
T three)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T one,
T two,
T three,
T four)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object, Object, Object, Object).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T one,
T two,
T three,
T four)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T one,
T two,
T three,
T four,
T five)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object, Object, Object, Object, Object).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T one,
T two,
T three,
T four,
T five)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T one,
T two,
T three,
T four,
T five,
T six)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object, Object, Object, Object, Object, Object).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T one,
T two,
T three,
T four,
T five,
T six)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T one,
T two,
T three,
T four,
T five,
T six,
T seven)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object, Object, Object, Object, Object, Object, Object).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T one,
T two,
T three,
T four,
T five,
T six,
T seven)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object, Object, Object, Object, Object, Object, Object, Object).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object, Object, Object, Object, Object, Object, Object, Object, Object).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine,
T ten)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object, Object, Object, Object, Object, Object, Object, Object, Object, Object).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine,
T ten)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> of(T... items)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.with(Object[]).of in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> with(T... items)
with in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> ofAll(java.lang.Iterable<? extends T> items)
com.gs.collections.api.factory.list.ImmutableListFactoryImmutableListFactory.withAll(Iterable).ofAll in interface com.gs.collections.api.factory.list.ImmutableListFactorypublic <T> com.gs.collections.api.list.ImmutableList<T> withAll(java.lang.Iterable<? extends T> items)
withAll in interface com.gs.collections.api.factory.list.ImmutableListFactory