Interface ImmutableShortBagFactory
-
- All Known Implementing Classes:
ImmutableShortBagFactoryImpl
public interface ImmutableShortBagFactory
A factory which creates instances of typeImmutableShortBag
. This file was automatically generated from template file immutablePrimitiveBagFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableShortBag
empty()
ImmutableShortBag
of()
Same asempty()
.ImmutableShortBag
of(short one)
Same aswith(short)
.ImmutableShortBag
of(short... items)
Same aswith(short[])
.ImmutableShortBag
ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.ImmutableShortBag
ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.ImmutableShortBag
with()
Same asempty()
.ImmutableShortBag
with(short one)
ImmutableShortBag
with(short... items)
ImmutableShortBag
withAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortBag
withAll(ShortIterable items)
-
-
-
Method Detail
-
empty
ImmutableShortBag empty()
- Since:
- 6.0
-
of
ImmutableShortBag of()
Same asempty()
.
-
with
ImmutableShortBag with()
Same asempty()
.
-
of
ImmutableShortBag of(short one)
Same aswith(short)
.
-
with
ImmutableShortBag with(short one)
-
of
ImmutableShortBag of(short... items)
Same aswith(short[])
.
-
with
ImmutableShortBag with(short... items)
-
ofAll
ImmutableShortBag ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.
-
withAll
ImmutableShortBag withAll(ShortIterable items)
-
ofAll
ImmutableShortBag ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableShortBag withAll(java.lang.Iterable<java.lang.Short> iterable)
-
-