Interface MutableCharSetFactory
-
- All Known Implementing Classes:
MutableCharSetFactoryImpl
public interface MutableCharSetFactory
A factory which creates instances of typeMutableCharSet
. This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableCharSet
empty()
MutableCharSet
of()
Same asempty()
.MutableCharSet
of(char... items)
Same aswith(char[])
.MutableCharSet
ofAll(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.MutableCharSet
ofAll(CharIterable items)
Same aswithAll(CharIterable)
.MutableCharSet
with()
Same asempty()
.MutableCharSet
with(char... items)
MutableCharSet
withAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharSet
withAll(CharIterable items)
default MutableCharSet
withInitialCapacity(int capacity)
Same asempty()
.
-
-
-
Method Detail
-
empty
MutableCharSet empty()
-
of
MutableCharSet of()
Same asempty()
.
-
with
MutableCharSet with()
Same asempty()
.
-
withInitialCapacity
default MutableCharSet withInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity- Since:
- 10.3
-
of
MutableCharSet of(char... items)
Same aswith(char[])
.
-
with
MutableCharSet with(char... items)
-
ofAll
MutableCharSet ofAll(CharIterable items)
Same aswithAll(CharIterable)
.
-
withAll
MutableCharSet withAll(CharIterable items)
-
ofAll
MutableCharSet ofAll(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableCharSet withAll(java.lang.Iterable<java.lang.Character> iterable)
-
-