public interface ImmutableListFactory
| Modifier and Type | Method and Description |
|---|---|
<T> ImmutableList<T> |
empty() |
<T> ImmutableList<T> |
of()
Same as
empty(). |
<T> ImmutableList<T> |
of(T... items)
Same as
with(Object[]). |
<T> ImmutableList<T> |
of(T one)
Same as
with(Object). |
<T> ImmutableList<T> |
of(T one,
T two)
Same as
with(Object, Object). |
<T> ImmutableList<T> |
of(T one,
T two,
T three)
Same as
with(Object, Object, Object). |
<T> ImmutableList<T> |
of(T one,
T two,
T three,
T four)
Same as
with(Object, Object, Object, Object). |
<T> ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five)
|
<T> ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six)
|
<T> ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six,
T seven)
|
<T> ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight)
|
<T> ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine)
|
<T> ImmutableList<T> |
of(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine,
T ten)
|
<T> ImmutableList<T> |
ofAll(Iterable<? extends T> items)
Same as
withAll(Iterable). |
<T> ImmutableList<T> |
with()
Same as
empty(). |
<T> ImmutableList<T> |
with(T... items) |
<T> ImmutableList<T> |
with(T one) |
<T> ImmutableList<T> |
with(T one,
T two) |
<T> ImmutableList<T> |
with(T one,
T two,
T three) |
<T> ImmutableList<T> |
with(T one,
T two,
T three,
T four) |
<T> ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five) |
<T> ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six) |
<T> ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six,
T seven) |
<T> ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight) |
<T> ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine) |
<T> ImmutableList<T> |
with(T one,
T two,
T three,
T four,
T five,
T six,
T seven,
T eight,
T nine,
T ten) |
<T> ImmutableList<T> |
withAll(Iterable<? extends T> items) |
<T> ImmutableList<T> empty()
<T> ImmutableList<T> of()
empty().<T> ImmutableList<T> with()
empty().<T> ImmutableList<T> of(T one)
with(Object).<T> ImmutableList<T> with(T one)
<T> ImmutableList<T> of(T one, T two)
with(Object, Object).<T> ImmutableList<T> with(T one, T two)
<T> ImmutableList<T> of(T one, T two, T three)
with(Object, Object, Object).<T> ImmutableList<T> with(T one, T two, T three)
<T> ImmutableList<T> of(T one, T two, T three, T four)
with(Object, Object, Object, Object).<T> ImmutableList<T> with(T one, T two, T three, T four)
<T> ImmutableList<T> of(T one, T two, T three, T four, T five)
<T> ImmutableList<T> with(T one, T two, T three, T four, T five)
<T> ImmutableList<T> of(T one, T two, T three, T four, T five, T six)
<T> ImmutableList<T> with(T one, T two, T three, T four, T five, T six)
<T> ImmutableList<T> of(T one, T two, T three, T four, T five, T six, T seven)
<T> ImmutableList<T> with(T one, T two, T three, T four, T five, T six, T seven)
<T> ImmutableList<T> of(T one, T two, T three, T four, T five, T six, T seven, T eight)
<T> ImmutableList<T> with(T one, T two, T three, T four, T five, T six, T seven, T eight)
<T> ImmutableList<T> of(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine)
<T> ImmutableList<T> with(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine)
<T> ImmutableList<T> of(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine, T ten)
<T> ImmutableList<T> with(T one, T two, T three, T four, T five, T six, T seven, T eight, T nine, T ten)
<T> ImmutableList<T> of(T... items)
with(Object[]).<T> ImmutableList<T> with(T... items)
<T> ImmutableList<T> ofAll(Iterable<? extends T> items)
withAll(Iterable).<T> ImmutableList<T> withAll(Iterable<? extends T> items)
Copyright © 2004–2017. All rights reserved.