Interface MutableCharBagFactory
-
- All Known Implementing Classes:
MutableCharBagFactoryImpl
public interface MutableCharBagFactory
A factory which creates instances of typeMutableCharBag
. This file was automatically generated from template file mutablePrimitiveBagFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutableCharBag
empty()
MutableCharBag
of()
Same asempty()
.MutableCharBag
of(char... items)
Same aswith(char[])
.MutableCharBag
ofAll(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.MutableCharBag
ofAll(CharIterable items)
Same aswithAll(CharIterable)
.MutableCharBag
with()
Same asempty()
.MutableCharBag
with(char... items)
MutableCharBag
withAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharBag
withAll(CharIterable items)
-
-
-
Method Detail
-
empty
MutableCharBag empty()
-
of
MutableCharBag of()
Same asempty()
.
-
with
MutableCharBag with()
Same asempty()
.
-
of
MutableCharBag of(char... items)
Same aswith(char[])
.
-
with
MutableCharBag with(char... items)
-
ofAll
MutableCharBag ofAll(CharIterable items)
Same aswithAll(CharIterable)
.
-
withAll
MutableCharBag withAll(CharIterable items)
-
ofAll
MutableCharBag ofAll(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableCharBag withAll(java.lang.Iterable<java.lang.Character> iterable)
-
-