Class MutableCharSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableCharSetFactoryImpl
-
- All Implemented Interfaces:
MutableCharSetFactory
public class MutableCharSetFactoryImpl extends java.lang.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()Same asMutableCharSetFactory.empty().MutableCharSetof(char... items)Same asMutableCharSetFactory.with(char[]).MutableCharSetofAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharSetofAll(CharIterable items)MutableCharSetwith()Same asMutableCharSetFactory.empty().MutableCharSetwith(char... items)MutableCharSetwithAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharSetwithAll(CharIterable items)MutableCharSetwithInitialCapacity(int capacity)Same asMutableCharSetFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableCharSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableCharSet empty()
- Specified by:
emptyin interfaceMutableCharSetFactory
-
of
public MutableCharSet of()
Description copied from interface:MutableCharSetFactorySame asMutableCharSetFactory.empty().- Specified by:
ofin interfaceMutableCharSetFactory
-
with
public MutableCharSet with()
Description copied from interface:MutableCharSetFactorySame asMutableCharSetFactory.empty().- Specified by:
within interfaceMutableCharSetFactory
-
withInitialCapacity
public MutableCharSet withInitialCapacity(int capacity)
Description copied from interface:MutableCharSetFactorySame asMutableCharSetFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableCharSetFactory
-
of
public MutableCharSet of(char... items)
Description copied from interface:MutableCharSetFactorySame asMutableCharSetFactory.with(char[]).- Specified by:
ofin interfaceMutableCharSetFactory
-
with
public MutableCharSet with(char... items)
- Specified by:
within interfaceMutableCharSetFactory
-
ofAll
public MutableCharSet ofAll(CharIterable items)
Description copied from interface:MutableCharSetFactory- Specified by:
ofAllin interfaceMutableCharSetFactory
-
withAll
public MutableCharSet withAll(CharIterable items)
- Specified by:
withAllin interfaceMutableCharSetFactory
-
ofAll
public MutableCharSet ofAll(java.lang.Iterable<java.lang.Character> iterable)
Description copied from interface:MutableCharSetFactory- Specified by:
ofAllin interfaceMutableCharSetFactory- Since:
- 10.0
-
withAll
public MutableCharSet withAll(java.lang.Iterable<java.lang.Character> iterable)
- Specified by:
withAllin interfaceMutableCharSetFactory- Since:
- 10.0
-
-