Interface ImmutableCharSetFactory
- All Known Implementing Classes:
ImmutableCharSetFactoryImpl
public interface ImmutableCharSetFactory
A factory which creates instances of type
ImmutableCharSet.
This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
Method Summary
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 Details
-
empty
ImmutableCharSet empty()- Since:
- 6.0
-
of
ImmutableCharSet of()Same asempty(). -
with
ImmutableCharSet with()Same asempty(). -
of
Same aswith(char). -
with
-
of
Same aswith(char[]). -
with
-
ofAll
Same aswithAll(CharIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-