ImmutableBagFactorypublic enum ImmutableBagFactoryImpl extends java.lang.Enum<ImmutableBagFactoryImpl> implements ImmutableBagFactory
| Enum Constant | Description |
|---|---|
INSTANCE |
| Modifier and Type | Method | Description |
|---|---|---|
<T> ImmutableBag<T> |
empty() |
|
<T> ImmutableBag<T> |
of() |
Same as
ImmutableBagFactory.empty(). |
<T> ImmutableBag<T> |
of(T element) |
Same as
ImmutableBagFactory.with(Object). |
<T> ImmutableBag<T> |
of(T... elements) |
Same as
ImmutableBagFactory.with(Object[]). |
<T> ImmutableBag<T> |
ofAll(java.lang.Iterable<? extends T> items) |
|
static ImmutableBagFactoryImpl |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ImmutableBagFactoryImpl[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
<T> ImmutableBag<T> |
with() |
Same as
ImmutableBagFactory.empty(). |
<T> ImmutableBag<T> |
with(T element) |
|
<T> ImmutableBag<T> |
with(T... elements) |
|
<T> ImmutableBag<T> |
withAll(java.lang.Iterable<? extends T> items) |
public static final ImmutableBagFactoryImpl INSTANCE
public static ImmutableBagFactoryImpl[] values()
for (ImmutableBagFactoryImpl c : ImmutableBagFactoryImpl.values()) System.out.println(c);
public static ImmutableBagFactoryImpl valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic <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(java.lang.Iterable<? extends T> items)
ImmutableBagFactoryofAll in interface ImmutableBagFactorypublic <T> ImmutableBag<T> withAll(java.lang.Iterable<? extends T> items)
withAll in interface ImmutableBagFactoryCopyright © 2004–2018. All rights reserved.