Class ImmutableLongListFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.list.immutable.primitive.ImmutableLongListFactoryImpl
-
- All Implemented Interfaces:
ImmutableLongListFactory
public class ImmutableLongListFactoryImpl extends Object implements ImmutableLongListFactory
ImmutableLongListFactoryImpl is a factory implementation which creates instances of typeImmutableLongList. This file was automatically generated from template file immutablePrimitiveListFactoryImpl.stg.- Since:
- 3.2.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableLongListFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableLongListFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableLongListempty()ImmutableLongListof()ImmutableLongListof(long one)ImmutableLongListof(long... items)ImmutableLongListofAll(Iterable<Long> iterable)ImmutableLongListofAll(LongStream items)ImmutableLongListofAll(LongIterable items)ImmutableLongListwith()ImmutableLongListwith(long one)ImmutableLongListwith(long... items)ImmutableLongListwithAll(Iterable<Long> iterable)ImmutableLongListwithAll(LongStream items)ImmutableLongListwithAll(LongIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableLongListFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableLongList empty()
- Specified by:
emptyin interfaceImmutableLongListFactory
-
of
public ImmutableLongList of()
- Specified by:
ofin interfaceImmutableLongListFactory
-
with
public ImmutableLongList with()
- Specified by:
within interfaceImmutableLongListFactory
-
of
public ImmutableLongList of(long one)
- Specified by:
ofin interfaceImmutableLongListFactory
-
with
public ImmutableLongList with(long one)
- Specified by:
within interfaceImmutableLongListFactory
-
of
public ImmutableLongList of(long... items)
- Specified by:
ofin interfaceImmutableLongListFactory
-
with
public ImmutableLongList with(long... items)
- Specified by:
within interfaceImmutableLongListFactory
-
ofAll
public ImmutableLongList ofAll(LongIterable items)
- Specified by:
ofAllin interfaceImmutableLongListFactory
-
withAll
public ImmutableLongList withAll(LongIterable items)
- Specified by:
withAllin interfaceImmutableLongListFactory
-
ofAll
public ImmutableLongList ofAll(Iterable<Long> iterable)
- Specified by:
ofAllin interfaceImmutableLongListFactory- Since:
- 10.0
-
withAll
public ImmutableLongList withAll(Iterable<Long> iterable)
- Specified by:
withAllin interfaceImmutableLongListFactory- Since:
- 10.0
-
ofAll
public ImmutableLongList ofAll(LongStream items)
- Specified by:
ofAllin interfaceImmutableLongListFactory- Since:
- 9.0
-
withAll
public ImmutableLongList withAll(LongStream items)
- Specified by:
withAllin interfaceImmutableLongListFactory- Since:
- 9.0
-
-