Class ImmutableCharBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.immutable.primitive.ImmutableCharBagFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharBagFactory
public class ImmutableCharBagFactoryImpl extends 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 ImmutableCharBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharBagempty()ImmutableCharBagof()ImmutableCharBagof(char one)ImmutableCharBagof(char... items)ImmutableCharBagofAll(Iterable<Character> iterable)ImmutableCharBagofAll(CharIterable items)ImmutableCharBagwith()ImmutableCharBagwith(char one)ImmutableCharBagwith(char... items)ImmutableCharBagwithAll(Iterable<Character> iterable)ImmutableCharBagwithAll(CharIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharBagFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharBag empty()
- Specified by:
emptyin interfaceImmutableCharBagFactory
-
of
public ImmutableCharBag of()
- Specified by:
ofin interfaceImmutableCharBagFactory
-
with
public ImmutableCharBag with()
- Specified by:
within interfaceImmutableCharBagFactory
-
of
public ImmutableCharBag of(char one)
- Specified by:
ofin interfaceImmutableCharBagFactory
-
with
public ImmutableCharBag with(char one)
- Specified by:
within interfaceImmutableCharBagFactory
-
of
public ImmutableCharBag of(char... items)
- Specified by:
ofin interfaceImmutableCharBagFactory
-
with
public ImmutableCharBag with(char... items)
- Specified by:
within interfaceImmutableCharBagFactory
-
ofAll
public ImmutableCharBag ofAll(CharIterable items)
- Specified by:
ofAllin interfaceImmutableCharBagFactory
-
withAll
public ImmutableCharBag withAll(CharIterable items)
- Specified by:
withAllin interfaceImmutableCharBagFactory
-
ofAll
public ImmutableCharBag ofAll(Iterable<Character> iterable)
- Specified by:
ofAllin interfaceImmutableCharBagFactory- Since:
- 10.0
-
withAll
public ImmutableCharBag withAll(Iterable<Character> iterable)
- Specified by:
withAllin interfaceImmutableCharBagFactory- Since:
- 10.0
-
-