Uses of Interface
org.eclipse.collections.api.set.primitive.MutableShortSet
-
Packages that use MutableShortSet 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 This package contains factory API for creating primitive set instances.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 ofSet.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive -
-
Uses of MutableShortSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableShortSet Modifier and Type Method Description MutableShortSetShortIterable. toSet()Converts the ShortIterable to a new MutableShortSet. -
Uses of MutableShortSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetMutableShortBag. selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of MutableShortSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetMutableShortSetFactory. empty()MutableShortSetMutableShortSetFactory. of()Same asMutableShortSetFactory.empty().MutableShortSetMutableShortSetFactory. of(short... items)Same asMutableShortSetFactory.with(short[]).MutableShortSetMutableShortSetFactory. ofAll(java.lang.Iterable<java.lang.Short> iterable)MutableShortSetMutableShortSetFactory. ofAll(ShortIterable items)MutableShortSetMutableShortSetFactory. with()Same asMutableShortSetFactory.empty().MutableShortSetMutableShortSetFactory. with(short... items)MutableShortSetMutableShortSetFactory. withAll(java.lang.Iterable<java.lang.Short> iterable)MutableShortSetMutableShortSetFactory. withAll(ShortIterable items)default MutableShortSetMutableShortSetFactory. withInitialCapacity(int capacity)Same asMutableShortSetFactory.empty(). -
Uses of MutableShortSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetShortBooleanMap. keySet()Returns a set containing all the keys in this map.MutableShortSetShortByteMap. keySet()Returns a set containing all the keys in this map.MutableShortSetShortCharMap. keySet()Returns a set containing all the keys in this map.MutableShortSetShortDoubleMap. keySet()Returns a set containing all the keys in this map.MutableShortSetShortFloatMap. keySet()Returns a set containing all the keys in this map.MutableShortSetShortIntMap. keySet()Returns a set containing all the keys in this map.MutableShortSetShortLongMap. keySet()Returns a set containing all the keys in this map.MutableShortSetShortObjectMap. keySet()Returns a set containing all the keys in this map.MutableShortSetShortShortMap. keySet()Returns a set containing all the keys in this map. -
Uses of MutableShortSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableShortSet Modifier and Type Method Description default MutableShortSetMutableSet. collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetMutableShortSet. asSynchronized()MutableShortSetMutableShortSet. asUnmodifiable()default MutableShortSetMutableShortSet. difference(ShortSet set)Returns the set of all members ofthisthat are not members ofset.default MutableShortSetMutableShortSet. intersect(ShortSet set)Returns the set of all objects that are members of boththisandset.default MutableShortSetMutableShortSet. newEmpty()Creates a new empty mutable version of the same Set type.MutableShortSetMutableShortSet. reject(ShortPredicate predicate)MutableShortSetMutableShortSet. select(ShortPredicate predicate)default MutableShortSetMutableShortSet. symmetricDifference(ShortSet set)Returns the set of all objects that are a member of exactly one ofthisandset(elements which are in one of the sets, but not in both).default MutableShortSetMutableShortSet. tap(ShortProcedure procedure)default MutableShortSetMutableShortSet. union(ShortSet set)MutableShortSetMutableShortSet. with(short element)MutableShortSetMutableShortSet. withAll(ShortIterable elements)MutableShortSetMutableShortSet. without(short element)MutableShortSetMutableShortSet. withoutAll(ShortIterable elements) -
Uses of MutableShortSet in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetImmutableShortEmptyBag. toSet()MutableShortSetImmutableShortHashBag. toSet()MutableShortSetImmutableShortSingletonBag. toSet() -
Uses of MutableShortSet in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetShortHashBag. selectUnique()MutableShortSetSynchronizedShortBag. selectUnique()MutableShortSetUnmodifiableShortBag. selectUnique() -
Uses of MutableShortSet in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetAbstractSynchronizedShortCollection. toSet()MutableShortSetAbstractUnmodifiableShortCollection. toSet() -
Uses of MutableShortSet in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetAbstractLazyShortIterable. toSet()MutableShortSetCollectShortIterable. toSet()MutableShortSetLazyShortIterableAdapter. toSet()MutableShortSetReverseShortIterable. toSet()MutableShortSetSelectShortIterable. toSet() -
Uses of MutableShortSet in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetImmutableShortArrayList. toSet()MutableShortSetImmutableShortEmptyList. toSet()MutableShortSetImmutableShortSingletonList. toSet() -
Uses of MutableShortSet in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetImmutableShortBooleanEmptyMap. keySet()MutableShortSetImmutableShortBooleanHashMap. keySet()MutableShortSetImmutableShortBooleanSingletonMap. keySet()MutableShortSetImmutableShortByteEmptyMap. keySet()MutableShortSetImmutableShortByteHashMap. keySet()MutableShortSetImmutableShortByteSingletonMap. keySet()MutableShortSetImmutableShortCharEmptyMap. keySet()MutableShortSetImmutableShortCharHashMap. keySet()MutableShortSetImmutableShortCharSingletonMap. keySet()MutableShortSetImmutableShortDoubleEmptyMap. keySet()MutableShortSetImmutableShortDoubleHashMap. keySet()MutableShortSetImmutableShortDoubleSingletonMap. keySet()MutableShortSetImmutableShortFloatEmptyMap. keySet()MutableShortSetImmutableShortFloatHashMap. keySet()MutableShortSetImmutableShortFloatSingletonMap. keySet()MutableShortSetImmutableShortIntEmptyMap. keySet()MutableShortSetImmutableShortIntHashMap. keySet()MutableShortSetImmutableShortIntSingletonMap. keySet()MutableShortSetImmutableShortLongEmptyMap. keySet()MutableShortSetImmutableShortLongHashMap. keySet()MutableShortSetImmutableShortLongSingletonMap. keySet()MutableShortSetImmutableShortObjectEmptyMap. keySet()MutableShortSetImmutableShortObjectHashMap. keySet()MutableShortSetImmutableShortObjectSingletonMap. keySet()MutableShortSetImmutableShortShortEmptyMap. keySet()MutableShortSetImmutableShortShortHashMap. keySet()MutableShortSetImmutableShortShortSingletonMap. keySet()MutableShortSetImmutableByteShortEmptyMap. toSet()MutableShortSetImmutableByteShortHashMap. toSet()MutableShortSetImmutableByteShortSingletonMap. toSet()MutableShortSetImmutableCharShortEmptyMap. toSet()MutableShortSetImmutableCharShortHashMap. toSet()MutableShortSetImmutableCharShortSingletonMap. toSet()MutableShortSetImmutableDoubleShortEmptyMap. toSet()MutableShortSetImmutableDoubleShortHashMap. toSet()MutableShortSetImmutableDoubleShortSingletonMap. toSet()MutableShortSetImmutableFloatShortEmptyMap. toSet()MutableShortSetImmutableFloatShortHashMap. toSet()MutableShortSetImmutableFloatShortSingletonMap. toSet()MutableShortSetImmutableIntShortEmptyMap. toSet()MutableShortSetImmutableIntShortHashMap. toSet()MutableShortSetImmutableIntShortSingletonMap. toSet()MutableShortSetImmutableLongShortEmptyMap. toSet()MutableShortSetImmutableLongShortHashMap. toSet()MutableShortSetImmutableLongShortSingletonMap. toSet()MutableShortSetImmutableObjectShortEmptyMap. toSet()MutableShortSetImmutableObjectShortHashMap. toSet()MutableShortSetImmutableObjectShortSingletonMap. toSet()MutableShortSetImmutableShortShortEmptyMap. toSet()MutableShortSetImmutableShortShortHashMap. toSet()MutableShortSetImmutableShortShortSingletonMap. toSet() -
Uses of MutableShortSet in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableShortSet Modifier and Type Class Description classAbstractMutableShortKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.private classShortBooleanHashMap.KeySetprivate classShortByteHashMap.KeySetprivate classShortCharHashMap.KeySetprivate classShortDoubleHashMap.KeySetprivate classShortFloatHashMap.KeySetprivate classShortIntHashMap.KeySetprivate classShortLongHashMap.KeySetprivate classShortObjectHashMap.KeySetprivate classShortShortHashMap.KeySetMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetAbstractMutableShortKeySet. asSynchronized()MutableShortSetAbstractMutableShortKeySet. asUnmodifiable()MutableShortSetShortBooleanHashMap. keySet()MutableShortSetShortByteHashMap. keySet()MutableShortSetShortCharHashMap. keySet()MutableShortSetShortDoubleHashMap. keySet()MutableShortSetShortFloatHashMap. keySet()MutableShortSetShortIntHashMap. keySet()MutableShortSetShortLongHashMap. keySet()MutableShortSetShortObjectHashMap. keySet()MutableShortSetShortShortHashMap. keySet()MutableShortSetSynchronizedShortBooleanMap. keySet()MutableShortSetSynchronizedShortByteMap. keySet()MutableShortSetSynchronizedShortCharMap. keySet()MutableShortSetSynchronizedShortDoubleMap. keySet()MutableShortSetSynchronizedShortFloatMap. keySet()MutableShortSetSynchronizedShortIntMap. keySet()MutableShortSetSynchronizedShortLongMap. keySet()MutableShortSetSynchronizedShortObjectMap. keySet()MutableShortSetSynchronizedShortShortMap. keySet()MutableShortSetUnmodifiableShortBooleanMap. keySet()MutableShortSetUnmodifiableShortByteMap. keySet()MutableShortSetUnmodifiableShortCharMap. keySet()MutableShortSetUnmodifiableShortDoubleMap. keySet()MutableShortSetUnmodifiableShortFloatMap. keySet()MutableShortSetUnmodifiableShortIntMap. keySet()MutableShortSetUnmodifiableShortLongMap. keySet()MutableShortSetUnmodifiableShortObjectMap. keySet()MutableShortSetUnmodifiableShortShortMap. keySet()MutableShortSetShortBooleanHashMap.KeySet. newEmpty()MutableShortSetShortByteHashMap.KeySet. newEmpty()MutableShortSetShortCharHashMap.KeySet. newEmpty()MutableShortSetShortDoubleHashMap.KeySet. newEmpty()MutableShortSetShortFloatHashMap.KeySet. newEmpty()MutableShortSetShortIntHashMap.KeySet. newEmpty()MutableShortSetShortLongHashMap.KeySet. newEmpty()MutableShortSetShortObjectHashMap.KeySet. newEmpty()MutableShortSetShortShortHashMap.KeySet. newEmpty()MutableShortSetAbstractMutableShortKeySet. reject(ShortPredicate predicate)MutableShortSetAbstractMutableShortKeySet. select(ShortPredicate predicate)MutableShortSetAbstractMutableShortKeySet. toSet()MutableShortSetAbstractMutableShortValuesMap.AbstractShortValuesCollection. toSet()MutableShortSetObjectShortHashMap. toSet()MutableShortSetObjectShortHashMap.ValuesCollection. toSet()MutableShortSetObjectShortHashMapWithHashingStrategy. toSet()MutableShortSetObjectShortHashMapWithHashingStrategy.ValuesCollection. toSet()MutableShortSetShortBooleanHashMap.KeysView. toSet()MutableShortSetSynchronizedByteShortMap. toSet()MutableShortSetSynchronizedCharShortMap. toSet()MutableShortSetSynchronizedDoubleShortMap. toSet()MutableShortSetSynchronizedFloatShortMap. toSet()MutableShortSetSynchronizedIntShortMap. toSet()MutableShortSetSynchronizedLongShortMap. toSet()MutableShortSetSynchronizedObjectShortMap. toSet()MutableShortSetSynchronizedShortShortMap. toSet()MutableShortSetUnmodifiableByteShortMap. toSet()MutableShortSetUnmodifiableCharShortMap. toSet()MutableShortSetUnmodifiableDoubleShortMap. toSet()MutableShortSetUnmodifiableFloatShortMap. toSet()MutableShortSetUnmodifiableIntShortMap. toSet()MutableShortSetUnmodifiableLongShortMap. toSet()MutableShortSetUnmodifiableObjectShortMap. toSet()MutableShortSetUnmodifiableShortShortMap. toSet()MutableShortSetAbstractMutableShortKeySet. with(short element)MutableShortSetAbstractMutableShortKeySet. withAll(ShortIterable elements)MutableShortSetAbstractMutableShortKeySet. without(short element)MutableShortSetAbstractMutableShortKeySet. withoutAll(ShortIterable elements) -
Uses of MutableShortSet in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetAbstractShortIterable. toSet()MutableShortSetSynchronizedShortIterable. toSet() -
Uses of MutableShortSet in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetImmutableShortEmptySet. toSet()MutableShortSetImmutableShortSingletonSet. toSet() -
Uses of MutableShortSet in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable that return MutableShortSet Modifier and Type Method Description MutableShortSetMultiReaderUnifiedSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortSetMultiReaderUnifiedSet.UntouchableMutableSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortSetSynchronizedMutableSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortSetUnmodifiableMutableSet. collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableShortSet Modifier and Type Class Description classShortHashSetThis file was automatically generated from template file primitiveHashSet.stg.classSynchronizedShortSetA synchronized view of aMutableShortSet.classUnmodifiableShortSetThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Fields in org.eclipse.collections.impl.set.mutable.primitive declared as MutableShortSet Modifier and Type Field Description private MutableShortSetBoxedMutableShortSet. delegateMethods in org.eclipse.collections.impl.set.mutable.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetShortHashSet. asSynchronized()MutableShortSetSynchronizedShortSet. asSynchronized()MutableShortSetUnmodifiableShortSet. asSynchronized()MutableShortSetShortHashSet. asUnmodifiable()MutableShortSetSynchronizedShortSet. asUnmodifiable()MutableShortSetUnmodifiableShortSet. asUnmodifiable()MutableShortSetMutableShortSetFactoryImpl. empty()private MutableShortSetSynchronizedShortSet. getMutableShortSet()private MutableShortSetUnmodifiableShortSet. getMutableShortSet()MutableShortSetSynchronizedShortSet. newEmpty()MutableShortSetUnmodifiableShortSet. newEmpty()MutableShortSetMutableShortSetFactoryImpl. of()MutableShortSetMutableShortSetFactoryImpl. of(short... items)MutableShortSetMutableShortSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Short> iterable)MutableShortSetMutableShortSetFactoryImpl. ofAll(ShortIterable items)MutableShortSetSynchronizedShortSet. reject(ShortPredicate predicate)MutableShortSetUnmodifiableShortSet. reject(ShortPredicate predicate)MutableShortSetSynchronizedShortSet. select(ShortPredicate predicate)MutableShortSetUnmodifiableShortSet. select(ShortPredicate predicate)MutableShortSetMutableShortSetFactoryImpl. with()MutableShortSetMutableShortSetFactoryImpl. with(short... items)MutableShortSetMutableShortSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Short> iterable)MutableShortSetMutableShortSetFactoryImpl. withAll(ShortIterable items)MutableShortSetMutableShortSetFactoryImpl. withInitialCapacity(int capacity)Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableShortSet Modifier and Type Method Description static SynchronizedShortSetSynchronizedShortSet. of(MutableShortSet set)This method will take a MutableShortSet and wrap it directly in a SynchronizedShortSet.static SynchronizedShortSetSynchronizedShortSet. of(MutableShortSet set, java.lang.Object lock)This method will take a MutableShortSet and wrap it directly in a SynchronizedShortSet.static UnmodifiableShortSetUnmodifiableShortSet. of(MutableShortSet set)This method will take a MutableShortSet and wrap it directly in a UnmodifiableShortSet.Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableShortSet Constructor Description BoxedMutableShortSet(MutableShortSet delegate)SynchronizedShortSet(MutableShortSet set)SynchronizedShortSet(MutableShortSet set, java.lang.Object newLock)UnmodifiableShortSet(MutableShortSet set) -
Uses of MutableShortSet in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetImmutableShortEmptyStack. toSet()MutableShortSetImmutableShortSingletonStack. toSet() -
Uses of MutableShortSet in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetSynchronizedShortStack. toSet()MutableShortSetUnmodifiableShortStack. toSet() -
Uses of MutableShortSet in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableShortSet Modifier and Type Method Description MutableShortSetAbstractShortStack. toSet()
-