Class ImmutableCharSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.immutable.primitive.ImmutableCharSetFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharSetFactory
public class ImmutableCharSetFactoryImpl extends java.lang.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()Same asImmutableCharSetFactory.empty().ImmutableCharSetof(char one)Same asImmutableCharSetFactory.with(char).ImmutableCharSetof(char... items)Same asImmutableCharSetFactory.with(char[]).ImmutableCharSetofAll(java.lang.Iterable<java.lang.Character> iterable)ImmutableCharSetofAll(CharIterable items)ImmutableCharSetwith()Same asImmutableCharSetFactory.empty().ImmutableCharSetwith(char one)ImmutableCharSetwith(char... items)ImmutableCharSetwithAll(java.lang.Iterable<java.lang.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()
Description copied from interface:ImmutableCharSetFactorySame asImmutableCharSetFactory.empty().- Specified by:
ofin interfaceImmutableCharSetFactory
-
with
public ImmutableCharSet with()
Description copied from interface:ImmutableCharSetFactorySame asImmutableCharSetFactory.empty().- Specified by:
within interfaceImmutableCharSetFactory
-
of
public ImmutableCharSet of(char one)
Description copied from interface:ImmutableCharSetFactorySame asImmutableCharSetFactory.with(char).- Specified by:
ofin interfaceImmutableCharSetFactory
-
with
public ImmutableCharSet with(char one)
- Specified by:
within interfaceImmutableCharSetFactory
-
of
public ImmutableCharSet of(char... items)
Description copied from interface:ImmutableCharSetFactorySame asImmutableCharSetFactory.with(char[]).- Specified by:
ofin interfaceImmutableCharSetFactory
-
with
public ImmutableCharSet with(char... items)
- Specified by:
within interfaceImmutableCharSetFactory
-
ofAll
public ImmutableCharSet ofAll(CharIterable items)
Description copied from interface:ImmutableCharSetFactory- Specified by:
ofAllin interfaceImmutableCharSetFactory
-
withAll
public ImmutableCharSet withAll(CharIterable items)
- Specified by:
withAllin interfaceImmutableCharSetFactory
-
ofAll
public ImmutableCharSet ofAll(java.lang.Iterable<java.lang.Character> iterable)
Description copied from interface:ImmutableCharSetFactory- Specified by:
ofAllin interfaceImmutableCharSetFactory- Since:
- 10.0
-
withAll
public ImmutableCharSet withAll(java.lang.Iterable<java.lang.Character> iterable)
- Specified by:
withAllin interfaceImmutableCharSetFactory- Since:
- 10.0
-
-