Interface ImmutableShortSetFactory
-
- All Known Implementing Classes:
ImmutableShortSetFactoryImpl
public interface ImmutableShortSetFactory
A factory which creates instances of typeImmutableShortSet
. 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 ImmutableShortSet
empty()
ImmutableShortSet
of()
Same asempty()
.ImmutableShortSet
of(short one)
Same aswith(short)
.ImmutableShortSet
of(short... items)
Same aswith(short[])
.ImmutableShortSet
ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.ImmutableShortSet
ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.ImmutableShortSet
with()
Same asempty()
.ImmutableShortSet
with(short one)
ImmutableShortSet
with(short... items)
ImmutableShortSet
withAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortSet
withAll(ShortIterable items)
-
-
-
Method Detail
-
empty
ImmutableShortSet empty()
- Since:
- 6.0
-
of
ImmutableShortSet of()
Same asempty()
.
-
with
ImmutableShortSet with()
Same asempty()
.
-
of
ImmutableShortSet of(short one)
Same aswith(short)
.
-
with
ImmutableShortSet with(short one)
-
of
ImmutableShortSet of(short... items)
Same aswith(short[])
.
-
with
ImmutableShortSet with(short... items)
-
ofAll
ImmutableShortSet ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.
-
withAll
ImmutableShortSet withAll(ShortIterable items)
-
ofAll
ImmutableShortSet ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableShortSet withAll(java.lang.Iterable<java.lang.Short> iterable)
-
-