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