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 ImmutableCharSetFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharSet
empty()
ImmutableCharSet
of()
Same asImmutableCharSetFactory.empty()
.ImmutableCharSet
of(char one)
Same asImmutableCharSetFactory.with(char)
.ImmutableCharSet
of(char... items)
Same asImmutableCharSetFactory.with(char[])
.ImmutableCharSet
ofAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharSet
ofAll(CharIterable items)
ImmutableCharSet
with()
Same asImmutableCharSetFactory.empty()
.ImmutableCharSet
with(char one)
ImmutableCharSet
with(char... items)
ImmutableCharSet
withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharSet
withAll(CharIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharSetFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharSet empty()
- Specified by:
empty
in interfaceImmutableCharSetFactory
-
of
public ImmutableCharSet of()
Description copied from interface:ImmutableCharSetFactory
Same asImmutableCharSetFactory.empty()
.- Specified by:
of
in interfaceImmutableCharSetFactory
-
with
public ImmutableCharSet with()
Description copied from interface:ImmutableCharSetFactory
Same asImmutableCharSetFactory.empty()
.- Specified by:
with
in interfaceImmutableCharSetFactory
-
of
public ImmutableCharSet of(char one)
Description copied from interface:ImmutableCharSetFactory
Same asImmutableCharSetFactory.with(char)
.- Specified by:
of
in interfaceImmutableCharSetFactory
-
with
public ImmutableCharSet with(char one)
- Specified by:
with
in interfaceImmutableCharSetFactory
-
of
public ImmutableCharSet of(char... items)
Description copied from interface:ImmutableCharSetFactory
Same asImmutableCharSetFactory.with(char[])
.- Specified by:
of
in interfaceImmutableCharSetFactory
-
with
public ImmutableCharSet with(char... items)
- Specified by:
with
in interfaceImmutableCharSetFactory
-
ofAll
public ImmutableCharSet ofAll(CharIterable items)
Description copied from interface:ImmutableCharSetFactory
- Specified by:
ofAll
in interfaceImmutableCharSetFactory
-
withAll
public ImmutableCharSet withAll(CharIterable items)
- Specified by:
withAll
in interfaceImmutableCharSetFactory
-
ofAll
public ImmutableCharSet ofAll(java.lang.Iterable<java.lang.Character> iterable)
Description copied from interface:ImmutableCharSetFactory
- Specified by:
ofAll
in interfaceImmutableCharSetFactory
- Since:
- 10.0
-
withAll
public ImmutableCharSet withAll(java.lang.Iterable<java.lang.Character> iterable)
- Specified by:
withAll
in interfaceImmutableCharSetFactory
- Since:
- 10.0
-
-