Class MutableCharSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableCharSetFactoryImpl
-
- All Implemented Interfaces:
MutableCharSetFactory
public class MutableCharSetFactoryImpl extends Object implements MutableCharSetFactory
MutableCharSetFactoryImpl is a factory implementation which creates instances of typeMutableCharSet. This file was automatically generated from template file mutablePrimitiveSetFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableCharSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableCharSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableCharSetempty()MutableCharSetof()MutableCharSetof(char... items)MutableCharSetofAll(Iterable<Character> iterable)MutableCharSetofAll(CharIterable items)MutableCharSetwith()MutableCharSetwith(char... items)MutableCharSetwithAll(Iterable<Character> iterable)MutableCharSetwithAll(CharIterable items)MutableCharSetwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableCharSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableCharSet empty()
- Specified by:
emptyin interfaceMutableCharSetFactory
-
of
public MutableCharSet of()
- Specified by:
ofin interfaceMutableCharSetFactory
-
with
public MutableCharSet with()
- Specified by:
within interfaceMutableCharSetFactory
-
withInitialCapacity
public MutableCharSet withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableCharSetFactory
-
of
public MutableCharSet of(char... items)
- Specified by:
ofin interfaceMutableCharSetFactory
-
with
public MutableCharSet with(char... items)
- Specified by:
within interfaceMutableCharSetFactory
-
ofAll
public MutableCharSet ofAll(CharIterable items)
- Specified by:
ofAllin interfaceMutableCharSetFactory
-
withAll
public MutableCharSet withAll(CharIterable items)
- Specified by:
withAllin interfaceMutableCharSetFactory
-
ofAll
public MutableCharSet ofAll(Iterable<Character> iterable)
- Specified by:
ofAllin interfaceMutableCharSetFactory- Since:
- 10.0
-
withAll
public MutableCharSet withAll(Iterable<Character> iterable)
- Specified by:
withAllin interfaceMutableCharSetFactory- Since:
- 10.0
-
-