Interface ImmutableLongSetFactory
-
- All Known Implementing Classes:
ImmutableLongSetFactoryImpl
public interface ImmutableLongSetFactory
A factory which creates instances of typeImmutableLongSet
. This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableLongSet
empty()
ImmutableLongSet
of()
Same asempty()
.ImmutableLongSet
of(long one)
Same aswith(long)
.ImmutableLongSet
of(long... items)
Same aswith(long[])
.ImmutableLongSet
ofAll(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.ImmutableLongSet
ofAll(java.util.stream.LongStream items)
ImmutableLongSet
ofAll(LongIterable items)
Same aswithAll(LongIterable)
.ImmutableLongSet
with()
Same asempty()
.ImmutableLongSet
with(long one)
ImmutableLongSet
with(long... items)
ImmutableLongSet
withAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongSet
withAll(java.util.stream.LongStream items)
ImmutableLongSet
withAll(LongIterable items)
-
-
-
Method Detail
-
empty
ImmutableLongSet empty()
- Since:
- 6.0
-
of
ImmutableLongSet of()
Same asempty()
.
-
with
ImmutableLongSet with()
Same asempty()
.
-
of
ImmutableLongSet of(long one)
Same aswith(long)
.
-
with
ImmutableLongSet with(long one)
-
of
ImmutableLongSet of(long... items)
Same aswith(long[])
.
-
with
ImmutableLongSet with(long... items)
-
ofAll
ImmutableLongSet ofAll(LongIterable items)
Same aswithAll(LongIterable)
.
-
withAll
ImmutableLongSet withAll(LongIterable items)
-
ofAll
ImmutableLongSet ofAll(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableLongSet withAll(java.lang.Iterable<java.lang.Long> iterable)
-
ofAll
ImmutableLongSet ofAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
withAll
ImmutableLongSet withAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
-