ImmutableListFactoryImpl
public interface ImmutableListFactory
Modifier and Type | Method | Description |
---|---|---|
<T> ImmutableList<T> |
empty() |
|
default <T> ImmutableList<T> |
fromStream(java.util.stream.Stream<? extends T> stream) |
|
<T> ImmutableList<T> |
of() |
Same as
empty() . |
<T> ImmutableList<T> |
of(T one) |
Same as
with(Object) . |
<T> ImmutableList<T> |
of(T... items) |
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(java.lang.Iterable<? extends T> items) |
Same as
withAll(Iterable) . |
<T> ImmutableList<T> |
with() |
Same as
empty() . |
<T> ImmutableList<T> |
with(T one) |
|
<T> ImmutableList<T> |
with(T... items) |
|
<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(java.lang.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(java.lang.Iterable<? extends T> items)
withAll(Iterable)
.<T> ImmutableList<T> withAll(java.lang.Iterable<? extends T> items)
default <T> ImmutableList<T> fromStream(java.util.stream.Stream<? extends T> stream)
Copyright © 2004–2020. All rights reserved.