Interface FixedSizeListFactory
-
public interface FixedSizeListFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> FixedSizeList<T>empty()<T> FixedSizeList<T>fromStream(Stream<? extends T> stream)<T> FixedSizeList<T>of()Same asempty().<T> FixedSizeList<T>of(T one)Same aswith(Object).<T> FixedSizeList<T>of(T... items)Same aswith(Object[])<T> FixedSizeList<T>of(T one, T two)Same aswith(Object, Object).<T> FixedSizeList<T>of(T one, T two, T three)Same aswith(Object, Object, Object).<T> FixedSizeList<T>of(T one, T two, T three, T four)Same aswith(Object, Object, Object, Object).<T> FixedSizeList<T>of(T one, T two, T three, T four, T five)<T> FixedSizeList<T>of(T one, T two, T three, T four, T five, T six)<T> FixedSizeList<T>ofAll(Iterable<? extends T> items)Same aswithAll(Iterable).<T> FixedSizeList<T>with()Same asempty().<T> FixedSizeList<T>with(T one)<T> FixedSizeList<T>with(T... items)<T> FixedSizeList<T>with(T one, T two)<T> FixedSizeList<T>with(T one, T two, T three)<T> FixedSizeList<T>with(T one, T two, T three, T four)<T> FixedSizeList<T>with(T one, T two, T three, T four, T five)<T> FixedSizeList<T>with(T one, T two, T three, T four, T five, T six)<T> FixedSizeList<T>withAll(Iterable<? extends T> items)
-
-
-
Method Detail
-
empty
<T> FixedSizeList<T> empty()
- Since:
- 6.0
-
of
<T> FixedSizeList<T> of()
Same asempty().
-
with
<T> FixedSizeList<T> with()
Same asempty().
-
of
<T> FixedSizeList<T> of(T one)
Same aswith(Object).
-
with
<T> FixedSizeList<T> with(T one)
-
of
<T> FixedSizeList<T> of(T one, T two)
Same aswith(Object, Object).
-
with
<T> FixedSizeList<T> with(T one, T two)
-
of
<T> FixedSizeList<T> of(T one, T two, T three)
Same aswith(Object, Object, Object).
-
with
<T> FixedSizeList<T> with(T one, T two, T three)
-
of
<T> FixedSizeList<T> of(T one, T two, T three, T four)
Same aswith(Object, Object, Object, Object).
-
with
<T> FixedSizeList<T> with(T one, T two, T three, T four)
-
of
<T> FixedSizeList<T> of(T one, T two, T three, T four, T five)
-
with
<T> FixedSizeList<T> with(T one, T two, T three, T four, T five)
-
of
<T> FixedSizeList<T> of(T one, T two, T three, T four, T five, T six)
-
with
<T> FixedSizeList<T> with(T one, T two, T three, T four, T five, T six)
-
of
<T> FixedSizeList<T> of(T... items)
Same aswith(Object[])
-
with
<T> FixedSizeList<T> with(T... items)
-
ofAll
<T> FixedSizeList<T> ofAll(Iterable<? extends T> items)
Same aswithAll(Iterable).
-
withAll
<T> FixedSizeList<T> withAll(Iterable<? extends T> items)
-
fromStream
<T> FixedSizeList<T> fromStream(Stream<? extends T> stream)
- Since:
- 10.0.
-
-