Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableByteCollection
Packages that use MutableByteCollection
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of the
MutableBiMap interface.This package contains implementations of primitive procedures.
This package contains implementations of the
MutableCollection interface.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableByteCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableByteCollectionModifier and TypeMethodDescriptiondefault <R extends MutableByteCollection>
RBooleanIterable.collectByte(BooleanToByteFunction function, R target) Returns the targetMutableByteCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RByteIterable.collectByte(ByteToByteFunction function, R target) Returns the targetMutableByteCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RCharIterable.collectByte(CharToByteFunction function, R target) Returns the targetMutableByteCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RDoubleIterable.collectByte(DoubleToByteFunction function, R target) Returns the targetMutableByteCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RFloatIterable.collectByte(FloatToByteFunction function, R target) Returns the targetMutableByteCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RIntIterable.collectByte(IntToByteFunction function, R target) Returns the targetMutableByteCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RLongIterable.collectByte(LongToByteFunction function, R target) Returns the targetMutableByteCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RRichIterable.collectByte(ByteFunction<? super T> byteFunction, R target) Same asRichIterable.collectByte(ByteFunction), except that the results are gathered into the specifiedtargetcollection.default <R extends MutableByteCollection>
RShortIterable.collectByte(ShortToByteFunction function, R target) Returns the targetMutableByteCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RRichIterable.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) Same as flatCollect, only the results are collected into the target collection.default <R extends MutableByteCollection>
RByteIterable.reject(BytePredicate predicate, R target) Same asByteIterable.reject(BytePredicate), only the results are added to the target MutableByteCollection.default <R extends MutableByteCollection>
RByteIterable.select(BytePredicate predicate, R target) Same asByteIterable.select(BytePredicate), only the results are added to the target MutableByteCollection. -
Uses of MutableByteCollection in org.eclipse.collections.api.bag.primitive
Subinterfaces of MutableByteCollection in org.eclipse.collections.api.bag.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableByteCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableByteCollectionModifier and TypeMethodDescriptiondefault MutableByteCollectionMutableCollection.collectByte(ByteFunction<? super T> byteFunction) Returns a new primitivebyteiterable with the results of applying the specified function on each element of the source collection. -
Uses of MutableByteCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableByteCollectionModifier and TypeMethodDescriptionMutableByteCollection.asSynchronized()MutableByteCollection.asUnmodifiable()default MutableByteCollectionMutableByteCollection.newEmpty()Creates a new empty mutable version of the same collection type.MutableByteCollection.reject(BytePredicate predicate) MutableByteCollection.select(BytePredicate predicate) default MutableByteCollectionMutableByteCollection.tap(ByteProcedure procedure) MutableByteCollection.with(byte element) MutableByteCollection.withAll(ByteIterable elements) MutableByteCollection.without(byte element) MutableByteCollection.withoutAll(ByteIterable elements) -
Uses of MutableByteCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableByteCollection in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableByteCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteCollectionModifier and TypeMethodDescriptionMutableObjectByteMap.reject(BytePredicate predicate) MutableObjectByteMap.select(BytePredicate predicate) ByteValuesMap.values()Returns the values in this map as a separate collection.ObjectByteMap.values()Returns the values in this map as a separate collection. -
Uses of MutableByteCollection in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with type parameters of type MutableByteCollectionModifier and TypeMethodDescriptiondefault <R extends MutableByteCollection>
ROrderedByteIterable.rejectWithIndex(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableByteCollection>
ROrderedByteIterable.selectWithIndex(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableByteCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableByteCollection in org.eclipse.collections.api.set.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveSet.stg. -
Uses of MutableByteCollection in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RUnmodifiableRichIterable.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableRichIterable.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RAbstractBag.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RAbstractBag.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableByteCollectionModifier and TypeClassDescriptionclassByteHashBag is similar toHashBag, and is memory-optimized for byte primitives.classA synchronized view of aMutableByteBag.classThis file was automatically generated from template file unmodifiablePrimitiveBag.stg. -
Uses of MutableByteCollection in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RAbstractBiMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RAbstractBiMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RUnmodifiableBiMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableBiMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as MutableByteCollectionModifier and TypeFieldDescriptionprivate final MutableByteCollectionCollectByteProcedure.byteCollectionMethods in org.eclipse.collections.impl.block.procedure.primitive that return MutableByteCollectionConstructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableByteCollectionModifierConstructorDescriptionCollectByteProcedure(ByteFunction<? super T> byteFunction, MutableByteCollection targetCollection) -
Uses of MutableByteCollection in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RAbstractSynchronizedRichIterable.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RAbstractSynchronizedRichIterable.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RAbstractCollectionAdapter.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RAbstractMultiReaderMutableCollection.collectByte(ByteFunction<? super T> byteFunction, R target) final <R extends MutableByteCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RAbstractUnmodifiableMutableCollection.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RAbstractMultiReaderMutableCollection.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) final <R extends MutableByteCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RAbstractUnmodifiableMutableCollection.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) Methods in org.eclipse.collections.impl.collection.mutable that return MutableByteCollectionModifier and TypeMethodDescriptionAbstractSynchronizedMutableCollection.collectByte(ByteFunction<? super T> byteFunction) AbstractUnmodifiableMutableCollection.collectByte(ByteFunction<? super T> byteFunction) -
Uses of MutableByteCollection in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement MutableByteCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classThis file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Fields in org.eclipse.collections.impl.collection.mutable.primitive declared as MutableByteCollectionModifier and TypeFieldDescriptionprivate final MutableByteCollectionAbstractSynchronizedByteCollection.collectionprivate final MutableByteCollectionAbstractUnmodifiableByteCollection.collectionMethods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableByteCollectionModifier and TypeMethodDescriptionAbstractSynchronizedByteCollection.asSynchronized()AbstractUnmodifiableByteCollection.asSynchronized()AbstractSynchronizedByteCollection.asUnmodifiable()AbstractUnmodifiableByteCollection.asUnmodifiable()protected MutableByteCollectionAbstractSynchronizedByteCollection.getByteCollection()protected MutableByteCollectionAbstractUnmodifiableByteCollection.getByteCollection()SynchronizedByteCollection.newEmpty()UnmodifiableByteCollection.newEmpty()AbstractSynchronizedByteCollection.reject(BytePredicate predicate) AbstractUnmodifiableByteCollection.reject(BytePredicate predicate) AbstractSynchronizedByteCollection.select(BytePredicate predicate) AbstractUnmodifiableByteCollection.select(BytePredicate predicate) AbstractSynchronizedByteCollection.with(byte element) AbstractUnmodifiableByteCollection.with(byte element) AbstractSynchronizedByteCollection.withAll(ByteIterable elements) AbstractUnmodifiableByteCollection.withAll(ByteIterable elements) AbstractSynchronizedByteCollection.without(byte element) AbstractUnmodifiableByteCollection.without(byte element) AbstractSynchronizedByteCollection.withoutAll(ByteIterable elements) AbstractUnmodifiableByteCollection.withoutAll(ByteIterable elements) Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableByteCollectionModifier and TypeMethodDescriptionstatic SynchronizedByteCollectionSynchronizedByteCollection.of(MutableByteCollection collection) This method will take a MutableByteCollection and wrap it directly in a SynchronizedByteCollection.static SynchronizedByteCollectionSynchronizedByteCollection.of(MutableByteCollection collection, Object lock) This method will take a MutableByteCollection and wrap it directly in a SynchronizedByteCollection.static UnmodifiableByteCollectionUnmodifiableByteCollection.of(MutableByteCollection collection) This method will take a MutableByteCollection and wrap it directly in a UnmodifiableByteCollection.Constructors in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableByteCollectionModifierConstructorDescriptionprotectedprotectedAbstractSynchronizedByteCollection(MutableByteCollection collection, Object newLock) protectedprotectedSynchronizedByteCollection(MutableByteCollection collection) protectedSynchronizedByteCollection(MutableByteCollection collection, Object newLock) protectedUnmodifiableByteCollection(MutableByteCollection collection) -
Uses of MutableByteCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableByteCollectionModifier and TypeMethodDescriptionstatic <T, R extends MutableByteCollection>
Collector<T, ?, R> Collectors2.collectByte(ByteFunction<? super T> function, Supplier<R> supplier) Returns a new MutableByteCollection with the results of applying the specified ByteFunction on each element of the source. -
Uses of MutableByteCollection in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive with type parameters of type MutableByteCollectionModifier and TypeFieldDescriptionprivate final Function0<MutableByteCollection> ChunkByteIterable.ChunkByteIterator.speciesNewStrategy -
Uses of MutableByteCollection in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RImmutableByteArrayList.reject(BytePredicate predicate, R target) <R extends MutableByteCollection>
RImmutableByteArrayList.select(BytePredicate predicate, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RFastList.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RFastList.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableByteCollectionModifier and TypeClassDescriptionclassByteArrayList is similar to FastList, and is memory-optimized for byte primitives.classA synchronized view of aMutableByteList.classThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RByteArrayList.reject(BytePredicate predicate, R target) <R extends MutableByteCollection>
RSynchronizedByteList.rejectWithIndex(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableByteCollection>
RUnmodifiableByteList.rejectWithIndex(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableByteCollection>
RByteArrayList.select(BytePredicate predicate, R target) <R extends MutableByteCollection>
RSynchronizedByteList.selectWithIndex(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection including all elements with corresponding indexes matching the specified predicate.<R extends MutableByteCollection>
RUnmodifiableByteList.selectWithIndex(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableByteCollection in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RImmutableByteObjectEmptyMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableByteObjectHashMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableByteObjectSingletonMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableCharObjectEmptyMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableCharObjectHashMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableCharObjectSingletonMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableDoubleObjectEmptyMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableDoubleObjectHashMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableDoubleObjectSingletonMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableFloatObjectEmptyMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableFloatObjectHashMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableFloatObjectSingletonMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableIntObjectEmptyMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableIntObjectHashMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableIntObjectSingletonMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableLongObjectEmptyMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableLongObjectHashMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableLongObjectSingletonMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableShortObjectEmptyMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableShortObjectHashMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableShortObjectSingletonMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RImmutableByteObjectEmptyMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RImmutableCharObjectEmptyMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RImmutableDoubleObjectEmptyMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RImmutableFloatObjectEmptyMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RImmutableIntObjectEmptyMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RImmutableLongObjectEmptyMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RImmutableShortObjectEmptyMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableByteCollectionModifier and TypeMethodDescriptionImmutableByteByteEmptyMap.values()ImmutableByteByteHashMap.values()ImmutableByteByteSingletonMap.values()ImmutableCharByteEmptyMap.values()ImmutableCharByteHashMap.values()ImmutableCharByteSingletonMap.values()ImmutableDoubleByteEmptyMap.values()ImmutableDoubleByteHashMap.values()ImmutableDoubleByteSingletonMap.values()ImmutableFloatByteEmptyMap.values()ImmutableFloatByteHashMap.values()ImmutableFloatByteSingletonMap.values()ImmutableIntByteEmptyMap.values()ImmutableIntByteHashMap.values()ImmutableIntByteSingletonMap.values()ImmutableLongByteEmptyMap.values()ImmutableLongByteHashMap.values()ImmutableLongByteSingletonMap.values()ImmutableObjectByteEmptyMap.values()ImmutableObjectByteHashMap.values()ImmutableObjectByteSingletonMap.values()ImmutableShortByteEmptyMap.values()ImmutableShortByteHashMap.values()ImmutableShortByteSingletonMap.values() -
Uses of MutableByteCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RUnmodifiableMutableMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableMutableMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.protected classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classMethods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RSynchronizedByteObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RSynchronizedCharObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RSynchronizedDoubleObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RSynchronizedFloatObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RSynchronizedIntObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RSynchronizedLongObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RSynchronizedShortObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableByteObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableCharObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableDoubleObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableFloatObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableIntObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableLongObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableShortObjectMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RSynchronizedByteObjectMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RSynchronizedCharObjectMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RSynchronizedDoubleObjectMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RSynchronizedFloatObjectMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RSynchronizedIntObjectMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RSynchronizedLongObjectMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RSynchronizedShortObjectMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteCollectionModifier and TypeMethodDescriptionAbstractMutableByteValuesMap.AbstractByteValuesCollection.asSynchronized()ObjectByteHashMap.ValuesCollection.asSynchronized()ObjectByteHashMapWithHashingStrategy.ValuesCollection.asSynchronized()AbstractMutableByteValuesMap.AbstractByteValuesCollection.asUnmodifiable()ObjectByteHashMap.ValuesCollection.asUnmodifiable()ObjectByteHashMapWithHashingStrategy.ValuesCollection.asUnmodifiable()ByteByteHashMap.ValuesCollection.newEmpty()CharByteHashMap.ValuesCollection.newEmpty()DoubleByteHashMap.ValuesCollection.newEmpty()FloatByteHashMap.ValuesCollection.newEmpty()IntByteHashMap.ValuesCollection.newEmpty()LongByteHashMap.ValuesCollection.newEmpty()ObjectByteHashMap.ValuesCollection.newEmpty()ObjectByteHashMapWithHashingStrategy.ValuesCollection.newEmpty()ShortByteHashMap.ValuesCollection.newEmpty()AbstractMutableByteValuesMap.AbstractByteValuesCollection.reject(BytePredicate predicate) ObjectByteHashMap.reject(BytePredicate predicate) ObjectByteHashMap.ValuesCollection.reject(BytePredicate predicate) ObjectByteHashMapWithHashingStrategy.reject(BytePredicate predicate) ObjectByteHashMapWithHashingStrategy.ValuesCollection.reject(BytePredicate predicate) SynchronizedObjectByteMap.reject(BytePredicate predicate) UnmodifiableObjectByteMap.reject(BytePredicate predicate) AbstractMutableByteValuesMap.AbstractByteValuesCollection.select(BytePredicate predicate) ObjectByteHashMap.select(BytePredicate predicate) ObjectByteHashMap.ValuesCollection.select(BytePredicate predicate) ObjectByteHashMapWithHashingStrategy.select(BytePredicate predicate) ObjectByteHashMapWithHashingStrategy.ValuesCollection.select(BytePredicate predicate) SynchronizedObjectByteMap.select(BytePredicate predicate) UnmodifiableObjectByteMap.select(BytePredicate predicate) ByteByteHashMap.values()CharByteHashMap.values()DoubleByteHashMap.values()FloatByteHashMap.values()IntByteHashMap.values()LongByteHashMap.values()ObjectByteHashMap.values()ObjectByteHashMapWithHashingStrategy.values()ShortByteHashMap.values()SynchronizedByteByteMap.values()SynchronizedCharByteMap.values()SynchronizedDoubleByteMap.values()SynchronizedFloatByteMap.values()SynchronizedIntByteMap.values()SynchronizedLongByteMap.values()SynchronizedObjectByteMap.values()SynchronizedShortByteMap.values()UnmodifiableByteByteMap.values()UnmodifiableCharByteMap.values()UnmodifiableDoubleByteMap.values()UnmodifiableFloatByteMap.values()UnmodifiableIntByteMap.values()UnmodifiableLongByteMap.values()UnmodifiableObjectByteMap.values()UnmodifiableShortByteMap.values()AbstractMutableByteValuesMap.AbstractByteValuesCollection.with(byte element) ObjectByteHashMap.ValuesCollection.with(byte element) ObjectByteHashMapWithHashingStrategy.ValuesCollection.with(byte element) AbstractMutableByteValuesMap.AbstractByteValuesCollection.withAll(ByteIterable elements) ObjectByteHashMap.ValuesCollection.withAll(ByteIterable elements) ObjectByteHashMapWithHashingStrategy.ValuesCollection.withAll(ByteIterable elements) AbstractMutableByteValuesMap.AbstractByteValuesCollection.without(byte element) ObjectByteHashMap.ValuesCollection.without(byte element) ObjectByteHashMapWithHashingStrategy.ValuesCollection.without(byte element) AbstractMutableByteValuesMap.AbstractByteValuesCollection.withoutAll(ByteIterable elements) ObjectByteHashMap.ValuesCollection.withoutAll(ByteIterable elements) ObjectByteHashMapWithHashingStrategy.ValuesCollection.withoutAll(ByteIterable elements) -
Uses of MutableByteCollection in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RUnmodifiableMutableOrderedMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableMutableOrderedMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RUnmodifiableTreeMap.collectByte(ByteFunction<? super V> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableTreeMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableByteCollectionModifier and TypeClassDescriptionfinal classclassA synchronized view of aMutableByteSet.classThis file was automatically generated from template file unmodifiablePrimitiveSet.stg. -
Uses of MutableByteCollection in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RImmutableArrayStack.collectByte(ByteFunction<? super T> byteFunction, R target) Deprecated.<R extends MutableByteCollection>
RImmutableEmptyStack.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RImmutableArrayStack.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) Deprecated.<R extends MutableByteCollection>
RImmutableEmptyStack.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RArrayStack.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RSynchronizedStack.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RUnmodifiableStack.collectByte(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RArrayStack.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RSynchronizedStack.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) <R extends MutableByteCollection>
RUnmodifiableStack.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) -
Uses of MutableByteCollection in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with type parameters of type MutableByteCollectionModifier and TypeMethodDescription<R extends MutableByteCollection>
RSynchronizedByteStack.rejectWithIndex(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableByteCollection>
RSynchronizedByteStack.selectWithIndex(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableByteCollection in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableByteCollectionModifier and TypeMethodDescriptionstatic <T, R extends MutableByteCollection>
RArrayIterate.collectByte(T[] objectArray, ByteFunction<? super T> byteFunction, R target) static <T, R extends MutableByteCollection>
RArrayListIterate.collectByte(ArrayList<T> list, ByteFunction<? super T> byteFunction, R target) static <T, R extends MutableByteCollection>
RIterate.collectByte(Iterable<T> iterable, ByteFunction<? super T> byteFunction, R target) Same asIterate.collectByte(Iterable, ByteFunction), except that the results are gathered into the specifiedtargetcollection.static <T, R extends MutableByteCollection>
RListIterate.collectByte(List<T> list, ByteFunction<? super T> byteFunction, R target) static <K, V, R extends MutableByteCollection>
RMapIterate.collectByte(Map<K, V> map, ByteFunction<? super V> byteFunction, R target) private static <T, R extends MutableByteCollection>
RArrayListIterate.collectByteFromInternalArray(ArrayList<T> source, ByteFunction<? super T> byteFunction, int elementsToCollect, R target) Methods in org.eclipse.collections.impl.utility that return MutableByteCollectionModifier and TypeMethodDescriptionstatic <T> MutableByteCollectionIterate.collectByte(Iterable<T> iterable, ByteFunction<? super T> byteFunction) Returns a newbytecollection with the results of applying the specified byteFunction for each element of the iterable.static <K,V> MutableByteCollection MapIterate.collectByte(Map<K, V> map, ByteFunction<? super V> byteFunction) -
Uses of MutableByteCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableByteCollectionModifier and TypeMethodDescriptionstatic <R extends MutableByteCollection, T>
RInternalArrayIterate.collectByte(T[] items, int size, ByteFunction<? super T> byteFunction, R target) Adds all array elements to the target MutableByteCollection after using the function supplied to convert each source element to the appropriate typestatic <T, R extends MutableByteCollection>
RIterableIterate.collectByte(Iterable<T> iterable, ByteFunction<? super T> byteFunction, R target) static <T, R extends MutableByteCollection>
RIteratorIterate.collectByte(Iterator<T> iterator, ByteFunction<? super T> byteFunction, R target) static <T, R extends MutableByteCollection>
RRandomAccessListIterate.collectByte(List<T> list, ByteFunction<? super T> byteFunction, R target) Methods in org.eclipse.collections.impl.utility.internal that return MutableByteCollectionModifier and TypeMethodDescriptionstatic <T> MutableByteCollectionIterableIterate.collectByte(Iterable<T> iterable, ByteFunction<? super T> byteFunction) static <T> MutableByteCollectionIteratorIterate.collectByte(Iterator<T> iterator, ByteFunction<? super T> byteFunction) -
Uses of MutableByteCollection in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with type parameters of type MutableByteCollectionModifier and TypeMethodDescriptionstatic <R extends MutableByteCollection>
RByteIterableIterate.reject(ByteIterable iterable, BytePredicate predicate, R targetCollection) static <R extends MutableByteCollection>
RByteIteratorIterate.reject(ByteIterator iterator, BytePredicate predicate, R targetCollection) static <R extends MutableByteCollection>
RByteIterableIterate.select(ByteIterable iterable, BytePredicate predicate, R targetCollection) static <R extends MutableByteCollection>
RByteIteratorIterate.select(ByteIterator iterator, BytePredicate predicate, R targetCollection)