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