Interface ImmutableCharBagFactory
-
- All Known Implementing Classes:
ImmutableCharBagFactoryImpl
public interface ImmutableCharBagFactory
A 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 ImmutableCharBag
empty()
ImmutableCharBag
of()
Same asempty()
.ImmutableCharBag
of(char one)
Same aswith(char)
.ImmutableCharBag
of(char... items)
Same aswith(char[])
.ImmutableCharBag
ofAll(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.ImmutableCharBag
ofAll(CharIterable items)
Same aswithAll(CharIterable)
.ImmutableCharBag
with()
Same asempty()
.ImmutableCharBag
with(char one)
ImmutableCharBag
with(char... items)
ImmutableCharBag
withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharBag
withAll(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(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableCharBag withAll(java.lang.Iterable<java.lang.Character> iterable)
-
-