Interface ImmutableShortBagFactory
-
public interface ImmutableShortBagFactoryA 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 ImmutableShortBagempty()ImmutableShortBagof()Same asempty().ImmutableShortBagof(short one)Same aswith(short).ImmutableShortBagof(short... items)Same aswith(short[]).ImmutableShortBagofAll(Iterable<Short> iterable)Same aswithAll(Iterable).ImmutableShortBagofAll(ShortIterable items)Same aswithAll(ShortIterable).ImmutableShortBagwith()Same asempty().ImmutableShortBagwith(short one)ImmutableShortBagwith(short... items)ImmutableShortBagwithAll(Iterable<Short> iterable)ImmutableShortBagwithAll(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(Iterable<Short> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableShortBag withAll(Iterable<Short> iterable)
-
-