Interface MutableShortSetFactory
- All Known Implementing Classes:
MutableShortSetFactoryImpl
public interface MutableShortSetFactory
A factory which creates instances of type
MutableShortSet.
This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
Method Summary
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 Details
-
empty
MutableShortSet empty() -
of
MutableShortSet of()Same asempty(). -
with
MutableShortSet with()Same asempty(). -
withInitialCapacity
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
Same aswith(short[]). -
with
-
ofAll
Same aswithAll(ShortIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-