Interface MutableCharBagFactory
-
public interface MutableCharBagFactoryA 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 MutableCharBagempty()MutableCharBagof()Same asempty().MutableCharBagof(char... items)Same aswith(char[]).MutableCharBagofAll(Iterable<Character> iterable)Same aswithAll(Iterable).MutableCharBagofAll(CharIterable items)Same aswithAll(CharIterable).MutableCharBagwith()Same asempty().MutableCharBagwith(char... items)MutableCharBagwithAll(Iterable<Character> iterable)MutableCharBagwithAll(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(Iterable<Character> iterable)
Same aswithAll(Iterable).
-
withAll
MutableCharBag withAll(Iterable<Character> iterable)
-
-