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 MutableCharBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableCharBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableCharBagempty()MutableCharBagof()Same asMutableCharBagFactory.empty().MutableCharBagof(char... items)Same asMutableCharBagFactory.with(char[]).MutableCharBagofAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharBagofAll(CharIterable items)MutableCharBagwith()Same asMutableCharBagFactory.empty().MutableCharBagwith(char... items)MutableCharBagwithAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharBagwithAll(CharIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableCharBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableCharBag empty()
- Specified by:
emptyin interfaceMutableCharBagFactory
-
of
public MutableCharBag of()
Description copied from interface:MutableCharBagFactorySame asMutableCharBagFactory.empty().- Specified by:
ofin interfaceMutableCharBagFactory
-
with
public MutableCharBag with()
Description copied from interface:MutableCharBagFactorySame asMutableCharBagFactory.empty().- Specified by:
within interfaceMutableCharBagFactory
-
of
public MutableCharBag of(char... items)
Description copied from interface:MutableCharBagFactorySame asMutableCharBagFactory.with(char[]).- Specified by:
ofin interfaceMutableCharBagFactory
-
with
public MutableCharBag with(char... items)
- Specified by:
within interfaceMutableCharBagFactory
-
ofAll
public MutableCharBag ofAll(CharIterable items)
Description copied from interface:MutableCharBagFactory- Specified by:
ofAllin interfaceMutableCharBagFactory
-
withAll
public MutableCharBag withAll(CharIterable items)
- Specified by:
withAllin interfaceMutableCharBagFactory
-
ofAll
public MutableCharBag ofAll(java.lang.Iterable<java.lang.Character> iterable)
Description copied from interface:MutableCharBagFactory- Specified by:
ofAllin interfaceMutableCharBagFactory- Since:
- 10.0
-
withAll
public MutableCharBag withAll(java.lang.Iterable<java.lang.Character> iterable)
- Specified by:
withAllin interfaceMutableCharBagFactory- Since:
- 10.0
-
-