Interface MutableShortSetFactory
-
- All Known Implementing Classes:
MutableShortSetFactoryImpl
public interface MutableShortSetFactory
A factory which creates instances of typeMutableShortSet
. This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableShortSet
empty()
MutableShortSet
of()
Same asempty()
.MutableShortSet
of(short... items)
Same aswith(short[])
.MutableShortSet
ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.MutableShortSet
ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.MutableShortSet
with()
Same asempty()
.MutableShortSet
with(short... items)
MutableShortSet
withAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortSet
withAll(ShortIterable items)
default MutableShortSet
withInitialCapacity(int capacity)
Same asempty()
.
-
-
-
Method Detail
-
empty
MutableShortSet empty()
-
of
MutableShortSet of()
Same asempty()
.
-
with
MutableShortSet with()
Same asempty()
.
-
withInitialCapacity
default MutableShortSet withInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity- Since:
- 10.3
-
of
MutableShortSet of(short... items)
Same aswith(short[])
.
-
with
MutableShortSet with(short... items)
-
ofAll
MutableShortSet ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.
-
withAll
MutableShortSet withAll(ShortIterable items)
-
ofAll
MutableShortSet ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableShortSet withAll(java.lang.Iterable<java.lang.Short> iterable)
-
-