public interface MutableBagFactory
MutableBag
.Modifier and Type | Method and Description |
---|---|
<T> MutableBag<T> |
empty() |
<T> MutableBag<T> |
of()
Same as
empty() . |
<T> MutableBag<T> |
of(T... elements)
Same as
with(Object[]) . |
<T> MutableBag<T> |
ofAll(Iterable<? extends T> items)
Same as
withAll(Iterable) . |
<T> MutableBag<T> |
with()
Same as
empty() . |
<T> MutableBag<T> |
with(T... elements) |
<T> MutableBag<T> |
withAll(Iterable<? extends T> items) |
<T> MutableBag<T> empty()
<T> MutableBag<T> of()
empty()
.<T> MutableBag<T> with()
empty()
.<T> MutableBag<T> of(T... elements)
with(Object[])
.<T> MutableBag<T> with(T... elements)
<T> MutableBag<T> ofAll(Iterable<? extends T> items)
withAll(Iterable)
.<T> MutableBag<T> withAll(Iterable<? extends T> items)
Copyright © 2004–2016. All rights reserved.