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