Interface MutableCharSetFactory
-
public interface MutableCharSetFactoryA 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 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 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(Iterable<Character> iterable)
Same aswithAll(Iterable).
-
withAll
MutableCharSet withAll(Iterable<Character> iterable)
-
-