Interface MutableShortSetFactory
-
public interface MutableShortSetFactoryA 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 MutableShortSetempty()MutableShortSetof()Same asempty().MutableShortSetof(short... items)Same aswith(short[]).MutableShortSetofAll(Iterable<Short> iterable)Same aswithAll(Iterable).MutableShortSetofAll(ShortIterable items)Same aswithAll(ShortIterable).MutableShortSetwith()Same asempty().MutableShortSetwith(short... items)MutableShortSetwithAll(Iterable<Short> iterable)MutableShortSetwithAll(ShortIterable items)default MutableShortSetwithInitialCapacity(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(Iterable<Short> iterable)
Same aswithAll(Iterable).
-
withAll
MutableShortSet withAll(Iterable<Short> iterable)
-
-