@Immutable public final class ImmutableBagFactoryImpl extends Object implements ImmutableBagFactory
| Constructor and Description |
|---|
ImmutableBagFactoryImpl() |
| Modifier and Type | Method and Description |
|---|---|
<T> ImmutableBag<T> |
empty() |
<T> ImmutableBag<T> |
of()
Same as
ImmutableBagFactory.empty(). |
<T> ImmutableBag<T> |
of(T... elements)
Same as
ImmutableBagFactory.with(Object[]). |
<T> ImmutableBag<T> |
of(T element)
Same as
ImmutableBagFactory.with(Object). |
<T> ImmutableBag<T> |
ofAll(Iterable<? extends T> items)
|
<T> ImmutableBag<T> |
with()
Same as
ImmutableBagFactory.empty(). |
<T> ImmutableBag<T> |
with(T... elements) |
<T> ImmutableBag<T> |
with(T element) |
<T> ImmutableBag<T> |
withAll(Iterable<? extends T> items) |
public <T> ImmutableBag<T> empty()
empty in interface ImmutableBagFactorypublic <T> ImmutableBag<T> of()
ImmutableBagFactoryImmutableBagFactory.empty().of in interface ImmutableBagFactorypublic <T> ImmutableBag<T> with()
ImmutableBagFactoryImmutableBagFactory.empty().with in interface ImmutableBagFactorypublic <T> ImmutableBag<T> of(T element)
ImmutableBagFactoryImmutableBagFactory.with(Object).of in interface ImmutableBagFactorypublic <T> ImmutableBag<T> with(T element)
with in interface ImmutableBagFactorypublic <T> ImmutableBag<T> of(T... elements)
ImmutableBagFactoryImmutableBagFactory.with(Object[]).of in interface ImmutableBagFactorypublic <T> ImmutableBag<T> with(T... elements)
with in interface ImmutableBagFactorypublic <T> ImmutableBag<T> ofAll(Iterable<? extends T> items)
ImmutableBagFactoryofAll in interface ImmutableBagFactorypublic <T> ImmutableBag<T> withAll(Iterable<? extends T> items)
withAll in interface ImmutableBagFactoryCopyright © 2004–2016. All rights reserved.