MutableStackFactoryImpl
public interface MutableStackFactory
Modifier and Type | Method | Description |
---|---|---|
<T> MutableStack<T> |
empty() |
|
<T> MutableStack<T> |
of() |
Same as
empty() . |
<T> MutableStack<T> |
of(T... elements) |
Same as
with(Object[]) . |
<T> MutableStack<T> |
ofAll(java.lang.Iterable<? extends T> elements) |
Same as
withAll(Iterable) . |
<T> MutableStack<T> |
ofAllReversed(java.lang.Iterable<? extends T> items) |
Same as
withAllReversed(Iterable) . |
<T> MutableStack<T> |
ofReversed(T... elements) |
Same as
withReversed(Object[]) . |
<T> MutableStack<T> |
with() |
Same as
empty() . |
<T> MutableStack<T> |
with(T... elements) |
|
<T> MutableStack<T> |
withAll(java.lang.Iterable<? extends T> elements) |
|
<T> MutableStack<T> |
withAllReversed(java.lang.Iterable<? extends T> items) |
|
<T> MutableStack<T> |
withReversed(T... elements) |
<T> MutableStack<T> empty()
<T> MutableStack<T> of()
empty()
.<T> MutableStack<T> with()
empty()
.<T> MutableStack<T> of(T... elements)
with(Object[])
.<T> MutableStack<T> with(T... elements)
<T> MutableStack<T> ofAll(java.lang.Iterable<? extends T> elements)
withAll(Iterable)
.<T> MutableStack<T> withAll(java.lang.Iterable<? extends T> elements)
<T> MutableStack<T> ofReversed(T... elements)
withReversed(Object[])
.<T> MutableStack<T> withReversed(T... elements)
<T> MutableStack<T> ofAllReversed(java.lang.Iterable<? extends T> items)
withAllReversed(Iterable)
.<T> MutableStack<T> withAllReversed(java.lang.Iterable<? extends T> items)
Copyright © 2004–2018. All rights reserved.