Interface ImmutableShortSetFactory
-
public interface ImmutableShortSetFactoryA 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 ImmutableShortSetempty()ImmutableShortSetof()Same asempty().ImmutableShortSetof(short one)Same aswith(short).ImmutableShortSetof(short... items)Same aswith(short[]).ImmutableShortSetofAll(Iterable<Short> iterable)Same aswithAll(Iterable).ImmutableShortSetofAll(ShortIterable items)Same aswithAll(ShortIterable).ImmutableShortSetwith()Same asempty().ImmutableShortSetwith(short one)ImmutableShortSetwith(short... items)ImmutableShortSetwithAll(Iterable<Short> iterable)ImmutableShortSetwithAll(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(Iterable<Short> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableShortSet withAll(Iterable<Short> iterable)
-
-