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 MutableCharSetempty()MutableCharSetof()Same asempty().MutableCharSetof(char... items)Same aswith(char[]).MutableCharSetofAll(Iterable<Character> iterable)Same aswithAll(Iterable).MutableCharSetofAll(CharIterable items)Same aswithAll(CharIterable).MutableCharSetwith()Same asempty().MutableCharSetwith(char... items)MutableCharSetwithAll(Iterable<Character> iterable)MutableCharSetwithAll(CharIterable items)default MutableCharSetwithInitialCapacity(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
-