Interface ImmutableCharSetFactory
-
public interface ImmutableCharSetFactoryA 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 ImmutableCharSetempty()ImmutableCharSetof()Same asempty().ImmutableCharSetof(char one)Same aswith(char).ImmutableCharSetof(char... items)Same aswith(char[]).ImmutableCharSetofAll(Iterable<Character> iterable)Same aswithAll(Iterable).ImmutableCharSetofAll(CharIterable items)Same aswithAll(CharIterable).ImmutableCharSetwith()Same asempty().ImmutableCharSetwith(char one)ImmutableCharSetwith(char... items)ImmutableCharSetwithAll(Iterable<Character> iterable)ImmutableCharSetwithAll(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(Iterable<Character> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableCharSet withAll(Iterable<Character> iterable)
-
-