Interface ImmutableShortListFactory
-
- All Known Implementing Classes:
ImmutableShortListFactoryImpl
public interface ImmutableShortListFactory
A 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 ImmutableShortList
empty()
ImmutableShortList
of()
Same asempty()
.ImmutableShortList
of(short one)
Same aswith(short)
.ImmutableShortList
of(short... items)
Same aswith(short[])
.ImmutableShortList
ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.ImmutableShortList
ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.ImmutableShortList
with()
Same asempty()
.ImmutableShortList
with(short one)
ImmutableShortList
with(short... items)
ImmutableShortList
withAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortList
withAll(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(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableShortList withAll(java.lang.Iterable<java.lang.Short> iterable)
-
-