Interface ImmutableShortListFactory
-
public interface ImmutableShortListFactoryA factory which creates instances of typeImmutableShortList. This file was automatically generated from template file immutablePrimitiveListFactory.stg.- Since:
- 3.2.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableShortListempty()ImmutableShortListof()Same asempty().ImmutableShortListof(short one)Same aswith(short).ImmutableShortListof(short... items)Same aswith(short[]).ImmutableShortListofAll(Iterable<Short> iterable)Same aswithAll(Iterable).ImmutableShortListofAll(ShortIterable items)Same aswithAll(ShortIterable).ImmutableShortListwith()Same asempty().ImmutableShortListwith(short one)ImmutableShortListwith(short... items)ImmutableShortListwithAll(Iterable<Short> iterable)ImmutableShortListwithAll(ShortIterable items)
-
-
-
Method Detail
-
empty
ImmutableShortList empty()
- Since:
- 6.0
-
of
ImmutableShortList of()
Same asempty().
-
with
ImmutableShortList with()
Same asempty().
-
of
ImmutableShortList of(short one)
Same aswith(short).
-
with
ImmutableShortList with(short one)
-
of
ImmutableShortList of(short... items)
Same aswith(short[]).
-
with
ImmutableShortList with(short... items)
-
ofAll
ImmutableShortList ofAll(ShortIterable items)
Same aswithAll(ShortIterable).
-
withAll
ImmutableShortList withAll(ShortIterable items)
-
ofAll
ImmutableShortList ofAll(Iterable<Short> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableShortList withAll(Iterable<Short> iterable)
-
-