Class ImmutableCharSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.immutable.primitive.ImmutableCharSetFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharSetFactory
public class ImmutableCharSetFactoryImpl extends Object implements ImmutableCharSetFactory
ImmutableCharSetFactoryImpl is a factory implementation which creates instances of typeImmutableCharSet. This file was automatically generated from template file immutablePrimitiveSetFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharSetempty()ImmutableCharSetof()ImmutableCharSetof(char one)ImmutableCharSetof(char... items)ImmutableCharSetofAll(Iterable<Character> iterable)ImmutableCharSetofAll(CharIterable items)ImmutableCharSetwith()ImmutableCharSetwith(char one)ImmutableCharSetwith(char... items)ImmutableCharSetwithAll(Iterable<Character> iterable)ImmutableCharSetwithAll(CharIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharSetFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharSet empty()
- Specified by:
emptyin interfaceImmutableCharSetFactory
-
of
public ImmutableCharSet of()
- Specified by:
ofin interfaceImmutableCharSetFactory
-
with
public ImmutableCharSet with()
- Specified by:
within interfaceImmutableCharSetFactory
-
of
public ImmutableCharSet of(char one)
- Specified by:
ofin interfaceImmutableCharSetFactory
-
with
public ImmutableCharSet with(char one)
- Specified by:
within interfaceImmutableCharSetFactory
-
of
public ImmutableCharSet of(char... items)
- Specified by:
ofin interfaceImmutableCharSetFactory
-
with
public ImmutableCharSet with(char... items)
- Specified by:
within interfaceImmutableCharSetFactory
-
ofAll
public ImmutableCharSet ofAll(CharIterable items)
- Specified by:
ofAllin interfaceImmutableCharSetFactory
-
withAll
public ImmutableCharSet withAll(CharIterable items)
- Specified by:
withAllin interfaceImmutableCharSetFactory
-
ofAll
public ImmutableCharSet ofAll(Iterable<Character> iterable)
- Specified by:
ofAllin interfaceImmutableCharSetFactory- Since:
- 10.0
-
withAll
public ImmutableCharSet withAll(Iterable<Character> iterable)
- Specified by:
withAllin interfaceImmutableCharSetFactory- Since:
- 10.0
-
-