Interface ImmutableCharBagFactory
-
public interface ImmutableCharBagFactoryA factory which creates instances of typeImmutableCharBag. This file was automatically generated from template file immutablePrimitiveBagFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableCharBagempty()ImmutableCharBagof()Same asempty().ImmutableCharBagof(char one)Same aswith(char).ImmutableCharBagof(char... items)Same aswith(char[]).ImmutableCharBagofAll(Iterable<Character> iterable)Same aswithAll(Iterable).ImmutableCharBagofAll(CharIterable items)Same aswithAll(CharIterable).ImmutableCharBagwith()Same asempty().ImmutableCharBagwith(char one)ImmutableCharBagwith(char... items)ImmutableCharBagwithAll(Iterable<Character> iterable)ImmutableCharBagwithAll(CharIterable items)
-
-
-
Method Detail
-
empty
ImmutableCharBag empty()
- Since:
- 6.0
-
of
ImmutableCharBag of()
Same asempty().
-
with
ImmutableCharBag with()
Same asempty().
-
of
ImmutableCharBag of(char one)
Same aswith(char).
-
with
ImmutableCharBag with(char one)
-
of
ImmutableCharBag of(char... items)
Same aswith(char[]).
-
with
ImmutableCharBag with(char... items)
-
ofAll
ImmutableCharBag ofAll(CharIterable items)
Same aswithAll(CharIterable).
-
withAll
ImmutableCharBag withAll(CharIterable items)
-
ofAll
ImmutableCharBag ofAll(Iterable<Character> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableCharBag withAll(Iterable<Character> iterable)
-
-