Class ImmutableCharBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.immutable.primitive.ImmutableCharBagFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharBagFactory
public class ImmutableCharBagFactoryImpl extends java.lang.Object implements ImmutableCharBagFactory
ImmutableCharBagFactoryImpl is a factory implementation which creates instances of typeImmutableCharBag
. This file was automatically generated from template file immutablePrimitiveBagFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharBagFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharBag
empty()
ImmutableCharBag
of()
Same asImmutableCharBagFactory.empty()
.ImmutableCharBag
of(char one)
Same asImmutableCharBagFactory.with(char)
.ImmutableCharBag
of(char... items)
Same asImmutableCharBagFactory.with(char[])
.ImmutableCharBag
ofAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharBag
ofAll(CharIterable items)
ImmutableCharBag
with()
Same asImmutableCharBagFactory.empty()
.ImmutableCharBag
with(char one)
ImmutableCharBag
with(char... items)
ImmutableCharBag
withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharBag
withAll(CharIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharBagFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharBag empty()
- Specified by:
empty
in interfaceImmutableCharBagFactory
-
of
public ImmutableCharBag of()
Description copied from interface:ImmutableCharBagFactory
Same asImmutableCharBagFactory.empty()
.- Specified by:
of
in interfaceImmutableCharBagFactory
-
with
public ImmutableCharBag with()
Description copied from interface:ImmutableCharBagFactory
Same asImmutableCharBagFactory.empty()
.- Specified by:
with
in interfaceImmutableCharBagFactory
-
of
public ImmutableCharBag of(char one)
Description copied from interface:ImmutableCharBagFactory
Same asImmutableCharBagFactory.with(char)
.- Specified by:
of
in interfaceImmutableCharBagFactory
-
with
public ImmutableCharBag with(char one)
- Specified by:
with
in interfaceImmutableCharBagFactory
-
of
public ImmutableCharBag of(char... items)
Description copied from interface:ImmutableCharBagFactory
Same asImmutableCharBagFactory.with(char[])
.- Specified by:
of
in interfaceImmutableCharBagFactory
-
with
public ImmutableCharBag with(char... items)
- Specified by:
with
in interfaceImmutableCharBagFactory
-
ofAll
public ImmutableCharBag ofAll(CharIterable items)
Description copied from interface:ImmutableCharBagFactory
- Specified by:
ofAll
in interfaceImmutableCharBagFactory
-
withAll
public ImmutableCharBag withAll(CharIterable items)
- Specified by:
withAll
in interfaceImmutableCharBagFactory
-
ofAll
public ImmutableCharBag ofAll(java.lang.Iterable<java.lang.Character> iterable)
Description copied from interface:ImmutableCharBagFactory
- Specified by:
ofAll
in interfaceImmutableCharBagFactory
- Since:
- 10.0
-
withAll
public ImmutableCharBag withAll(java.lang.Iterable<java.lang.Character> iterable)
- Specified by:
withAll
in interfaceImmutableCharBagFactory
- Since:
- 10.0
-
-