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 MutableCharSetFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description MutableCharSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableCharSet
empty()
MutableCharSet
of()
Same asMutableCharSetFactory.empty()
.MutableCharSet
of(char... items)
Same asMutableCharSetFactory.with(char[])
.MutableCharSet
ofAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharSet
ofAll(CharIterable items)
MutableCharSet
with()
Same asMutableCharSetFactory.empty()
.MutableCharSet
with(char... items)
MutableCharSet
withAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharSet
withAll(CharIterable items)
MutableCharSet
withInitialCapacity(int capacity)
Same asMutableCharSetFactory.empty()
.
-
-
-
Field Detail
-
INSTANCE
public static final MutableCharSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableCharSet empty()
- Specified by:
empty
in interfaceMutableCharSetFactory
-
of
public MutableCharSet of()
Description copied from interface:MutableCharSetFactory
Same asMutableCharSetFactory.empty()
.- Specified by:
of
in interfaceMutableCharSetFactory
-
with
public MutableCharSet with()
Description copied from interface:MutableCharSetFactory
Same asMutableCharSetFactory.empty()
.- Specified by:
with
in interfaceMutableCharSetFactory
-
withInitialCapacity
public MutableCharSet withInitialCapacity(int capacity)
Description copied from interface:MutableCharSetFactory
Same asMutableCharSetFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableCharSetFactory
-
of
public MutableCharSet of(char... items)
Description copied from interface:MutableCharSetFactory
Same asMutableCharSetFactory.with(char[])
.- Specified by:
of
in interfaceMutableCharSetFactory
-
with
public MutableCharSet with(char... items)
- Specified by:
with
in interfaceMutableCharSetFactory
-
ofAll
public MutableCharSet ofAll(CharIterable items)
Description copied from interface:MutableCharSetFactory
- Specified by:
ofAll
in interfaceMutableCharSetFactory
-
withAll
public MutableCharSet withAll(CharIterable items)
- Specified by:
withAll
in interfaceMutableCharSetFactory
-
ofAll
public MutableCharSet ofAll(java.lang.Iterable<java.lang.Character> iterable)
Description copied from interface:MutableCharSetFactory
- Specified by:
ofAll
in interfaceMutableCharSetFactory
- Since:
- 10.0
-
withAll
public MutableCharSet withAll(java.lang.Iterable<java.lang.Character> iterable)
- Specified by:
withAll
in interfaceMutableCharSetFactory
- Since:
- 10.0
-
-