| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.factory.set.primitive | |
| org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
| org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
MutableShortSet |
ShortIterable.toSet()
Converts the ShortIterable to a new MutableShortSet.
|
| Modifier and Type | Method and Description |
|---|---|
MutableShortSet |
MutableShortBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
MutableShortSet |
MutableShortSetFactory.empty() |
MutableShortSet |
MutableShortSetFactory.of()
Same as
MutableShortSetFactory.empty(). |
MutableShortSet |
MutableShortSetFactory.of(short... items)
Same as
MutableShortSetFactory.with(short[]). |
MutableShortSet |
MutableShortSetFactory.ofAll(Iterable<Short> iterable)
|
MutableShortSet |
MutableShortSetFactory.ofAll(ShortIterable items)
|
MutableShortSet |
MutableShortSetFactory.with()
Same as
MutableShortSetFactory.empty(). |
MutableShortSet |
MutableShortSetFactory.with(short... items) |
MutableShortSet |
MutableShortSetFactory.withAll(Iterable<Short> iterable) |
MutableShortSet |
MutableShortSetFactory.withAll(ShortIterable items) |
default MutableShortSet |
MutableShortSetFactory.withInitialCapacity(int capacity)
Same as
MutableShortSetFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableShortSet |
ShortBooleanMap.keySet()
Returns a set containing all the keys in this map.
|
MutableShortSet |
ShortCharMap.keySet()
Returns a set containing all the keys in this map.
|
MutableShortSet |
ShortByteMap.keySet()
Returns a set containing all the keys in this map.
|
MutableShortSet |
ShortShortMap.keySet()
Returns a set containing all the keys in this map.
|
MutableShortSet |
ShortLongMap.keySet()
Returns a set containing all the keys in this map.
|
MutableShortSet |
ShortDoubleMap.keySet()
Returns a set containing all the keys in this map.
|
MutableShortSet |
ShortFloatMap.keySet()
Returns a set containing all the keys in this map.
|
MutableShortSet |
ShortIntMap.keySet()
Returns a set containing all the keys in this map.
|
MutableShortSet |
ShortObjectMap.keySet()
Returns a set containing all the keys in this map.
|
| Modifier and Type | Method and Description |
|---|---|
MutableShortSet |
MutableSet.collectShort(ShortFunction<? super T> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableShortSet |
MutableShortSet.asSynchronized() |
MutableShortSet |
MutableShortSet.asUnmodifiable() |
default MutableShortSet |
MutableShortSet.difference(ShortSet set)
Returns the set of all members of
this that are not members of set. |
default MutableShortSet |
MutableShortSet.intersect(ShortSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableShortSet |
MutableShortSet.newEmpty()
Creates a new empty mutable version of the same Set type.
|
MutableShortSet |
MutableShortSet.reject(ShortPredicate predicate) |
MutableShortSet |
MutableShortSet.select(ShortPredicate predicate) |
default MutableShortSet |
MutableShortSet.symmetricDifference(ShortSet set)
Returns the set of all objects that are a member of exactly one of
this and set (elements which
are in one of the sets, but not in both). |
default MutableShortSet |
MutableShortSet.tap(ShortProcedure procedure) |
default MutableShortSet |
MutableShortSet.union(ShortSet set) |
MutableShortSet |
MutableShortSet.with(short element) |
MutableShortSet |
MutableShortSet.withAll(ShortIterable elements) |
MutableShortSet |
MutableShortSet.without(short element) |
MutableShortSet |
MutableShortSet.withoutAll(ShortIterable elements) |
Copyright © 2004–2021. All rights reserved.