Interface ImmutableLongSetFactory
-
public interface ImmutableLongSetFactoryA 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 ImmutableLongSetempty()ImmutableLongSetof()Same asempty().ImmutableLongSetof(long one)Same aswith(long).ImmutableLongSetof(long... items)Same aswith(long[]).ImmutableLongSetofAll(Iterable<Long> iterable)Same aswithAll(Iterable).ImmutableLongSetofAll(LongStream items)ImmutableLongSetofAll(LongIterable items)Same aswithAll(LongIterable).ImmutableLongSetwith()Same asempty().ImmutableLongSetwith(long one)ImmutableLongSetwith(long... items)ImmutableLongSetwithAll(Iterable<Long> iterable)ImmutableLongSetwithAll(LongStream items)ImmutableLongSetwithAll(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(Iterable<Long> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableLongSet withAll(Iterable<Long> iterable)
-
ofAll
ImmutableLongSet ofAll(LongStream items)
- Since:
- 9.0
-
withAll
ImmutableLongSet withAll(LongStream items)
- Since:
- 9.0
-
-