Interface ImmutableLongSetFactory
- All Known Implementing Classes:
ImmutableLongSetFactoryImpl
public interface ImmutableLongSetFactory
A factory which creates instances of type
ImmutableLongSet.
This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
Method Summary
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 Details
-
empty
ImmutableLongSet empty()- Since:
- 6.0
-
of
ImmutableLongSet of()Same asempty(). -
with
ImmutableLongSet with()Same asempty(). -
of
Same aswith(long). -
with
-
of
Same aswith(long[]). -
with
-
ofAll
Same aswithAll(LongIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-