Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableByteCollection
-
Packages that use MutableByteCollection 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.collection org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.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.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.collector 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.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list 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 This package contains implementations of theMutableMap
interface.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.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal.primitive -
-
Uses of MutableByteCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableByteCollection Modifier and Type Method Description default <R extends MutableByteCollection>
RBooleanIterable. collectByte(BooleanToByteFunction function, R target)
Returns the targetMutableByteCollection
with 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 targetMutableByteCollection
with 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 targetMutableByteCollection
with 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 targetMutableByteCollection
with 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 targetMutableByteCollection
with 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 targetMutableByteCollection
with 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 targetMutableByteCollection
with 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 specifiedtarget
collection.default <R extends MutableByteCollection>
RShortIterable. collectByte(ShortToByteFunction function, R target)
Returns the targetMutableByteCollection
with 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.primitive Modifier and Type Interface Description interface
MutableByteBag
This 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 MutableByteCollection Modifier and Type Method Description default MutableByteCollection
MutableCollection. collectByte(ByteFunction<? super T> byteFunction)
Returns a new primitivebyte
iterable 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 MutableByteCollection Modifier and Type Method Description MutableByteCollection
MutableByteCollection. asSynchronized()
MutableByteCollection
MutableByteCollection. asUnmodifiable()
default MutableByteCollection
MutableByteCollection. newEmpty()
Creates a new empty mutable version of the same collection type.MutableByteCollection
MutableByteCollection. reject(BytePredicate predicate)
MutableByteCollection
MutableByteCollection. select(BytePredicate predicate)
default MutableByteCollection
MutableByteCollection. tap(ByteProcedure procedure)
MutableByteCollection
MutableByteCollection. with(byte element)
MutableByteCollection
MutableByteCollection. withAll(ByteIterable elements)
MutableByteCollection
MutableByteCollection. without(byte element)
MutableByteCollection
MutableByteCollection. withoutAll(ByteIterable elements)
-
Uses of MutableByteCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableByteCollection in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
MutableByteList
This 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 MutableByteCollection Modifier and Type Method Description MutableByteCollection
MutableObjectByteMap. reject(BytePredicate predicate)
MutableByteCollection
MutableObjectByteMap. select(BytePredicate predicate)
MutableByteCollection
ByteValuesMap. values()
Returns the values in this map as a separate collection.MutableByteCollection
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 MutableByteCollection Modifier and Type Method Description default <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.primitive Modifier and Type Interface Description interface
MutableByteSet
This 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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Class Description class
ByteHashBag
ByteHashBag is similar toHashBag
, and is memory-optimized for byte primitives.class
SynchronizedByteBag
A synchronized view of aMutableByteBag
.class
UnmodifiableByteBag
This 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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Field Description private MutableByteCollection
CollectByteProcedure. byteCollection
Methods in org.eclipse.collections.impl.block.procedure.primitive that return MutableByteCollection Modifier and Type Method Description MutableByteCollection
CollectByteProcedure. getByteCollection()
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableByteCollection Constructor Description CollectByteProcedure(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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RAbstractCollectionAdapter. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RAbstractMultiReaderMutableCollection. collectByte(ByteFunction<? super T> byteFunction, R target)
<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)
<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 MutableByteCollection Modifier and Type Method Description MutableByteCollection
AbstractSynchronizedMutableCollection. collectByte(ByteFunction<? super T> byteFunction)
MutableByteCollection
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 MutableByteCollection Modifier and Type Class Description class
AbstractSynchronizedByteCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableByteCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedByteCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableByteCollection
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Fields in org.eclipse.collections.impl.collection.mutable.primitive declared as MutableByteCollection Modifier and Type Field Description private MutableByteCollection
AbstractSynchronizedByteCollection. collection
private MutableByteCollection
AbstractUnmodifiableByteCollection. collection
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableByteCollection Modifier and Type Method Description MutableByteCollection
AbstractSynchronizedByteCollection. asSynchronized()
MutableByteCollection
AbstractUnmodifiableByteCollection. asSynchronized()
MutableByteCollection
AbstractSynchronizedByteCollection. asUnmodifiable()
MutableByteCollection
AbstractUnmodifiableByteCollection. asUnmodifiable()
protected MutableByteCollection
AbstractSynchronizedByteCollection. getByteCollection()
protected MutableByteCollection
AbstractUnmodifiableByteCollection. getByteCollection()
MutableByteCollection
SynchronizedByteCollection. newEmpty()
MutableByteCollection
UnmodifiableByteCollection. newEmpty()
MutableByteCollection
AbstractSynchronizedByteCollection. reject(BytePredicate predicate)
MutableByteCollection
AbstractUnmodifiableByteCollection. reject(BytePredicate predicate)
MutableByteCollection
AbstractSynchronizedByteCollection. select(BytePredicate predicate)
MutableByteCollection
AbstractUnmodifiableByteCollection. select(BytePredicate predicate)
MutableByteCollection
AbstractSynchronizedByteCollection. with(byte element)
MutableByteCollection
AbstractUnmodifiableByteCollection. with(byte element)
MutableByteCollection
AbstractSynchronizedByteCollection. withAll(ByteIterable elements)
MutableByteCollection
AbstractUnmodifiableByteCollection. withAll(ByteIterable elements)
MutableByteCollection
AbstractSynchronizedByteCollection. without(byte element)
MutableByteCollection
AbstractUnmodifiableByteCollection. without(byte element)
MutableByteCollection
AbstractSynchronizedByteCollection. withoutAll(ByteIterable elements)
MutableByteCollection
AbstractUnmodifiableByteCollection. withoutAll(ByteIterable elements)
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableByteCollection Modifier and Type Method Description static SynchronizedByteCollection
SynchronizedByteCollection. of(MutableByteCollection collection)
This method will take a MutableByteCollection and wrap it directly in a SynchronizedByteCollection.static SynchronizedByteCollection
SynchronizedByteCollection. of(MutableByteCollection collection, java.lang.Object lock)
This method will take a MutableByteCollection and wrap it directly in a SynchronizedByteCollection.static UnmodifiableByteCollection
UnmodifiableByteCollection. 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 MutableByteCollection Constructor Description AbstractSynchronizedByteCollection(MutableByteCollection collection)
AbstractSynchronizedByteCollection(MutableByteCollection collection, java.lang.Object newLock)
AbstractUnmodifiableByteCollection(MutableByteCollection collection)
SynchronizedByteCollection(MutableByteCollection collection)
SynchronizedByteCollection(MutableByteCollection collection, java.lang.Object newLock)
UnmodifiableByteCollection(MutableByteCollection collection)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableByteCollection Modifier and Type Method Description static <T,R extends MutableByteCollection>
java.util.stream.Collector<T,?,R>Collectors2. collectByte(ByteFunction<? super T> function, java.util.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 MutableByteCollection Modifier and Type Field Description private 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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Class Description class
ByteArrayList
ByteArrayList is similar to FastList, and is memory-optimized for byte primitives.class
SynchronizedByteList
A synchronized view of aMutableByteList
.class
UnmodifiableByteList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description MutableByteCollection
ImmutableByteByteEmptyMap. values()
MutableByteCollection
ImmutableByteByteHashMap. values()
MutableByteCollection
ImmutableByteByteSingletonMap. values()
MutableByteCollection
ImmutableCharByteEmptyMap. values()
MutableByteCollection
ImmutableCharByteHashMap. values()
MutableByteCollection
ImmutableCharByteSingletonMap. values()
MutableByteCollection
ImmutableDoubleByteEmptyMap. values()
MutableByteCollection
ImmutableDoubleByteHashMap. values()
MutableByteCollection
ImmutableDoubleByteSingletonMap. values()
MutableByteCollection
ImmutableFloatByteEmptyMap. values()
MutableByteCollection
ImmutableFloatByteHashMap. values()
MutableByteCollection
ImmutableFloatByteSingletonMap. values()
MutableByteCollection
ImmutableIntByteEmptyMap. values()
MutableByteCollection
ImmutableIntByteHashMap. values()
MutableByteCollection
ImmutableIntByteSingletonMap. values()
MutableByteCollection
ImmutableLongByteEmptyMap. values()
MutableByteCollection
ImmutableLongByteHashMap. values()
MutableByteCollection
ImmutableLongByteSingletonMap. values()
MutableByteCollection
ImmutableObjectByteEmptyMap. values()
MutableByteCollection
ImmutableObjectByteHashMap. values()
MutableByteCollection
ImmutableObjectByteSingletonMap. values()
MutableByteCollection
ImmutableShortByteEmptyMap. values()
MutableByteCollection
ImmutableShortByteHashMap. values()
MutableByteCollection
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 MutableByteCollection Modifier and Type Method Description <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
Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. asSynchronized()
MutableByteCollection
ObjectByteHashMap.ValuesCollection. asSynchronized()
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. asSynchronized()
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. asUnmodifiable()
MutableByteCollection
ObjectByteHashMap.ValuesCollection. asUnmodifiable()
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. asUnmodifiable()
MutableByteCollection
ByteByteHashMap.ValuesCollection. newEmpty()
MutableByteCollection
CharByteHashMap.ValuesCollection. newEmpty()
MutableByteCollection
DoubleByteHashMap.ValuesCollection. newEmpty()
MutableByteCollection
FloatByteHashMap.ValuesCollection. newEmpty()
MutableByteCollection
IntByteHashMap.ValuesCollection. newEmpty()
MutableByteCollection
LongByteHashMap.ValuesCollection. newEmpty()
MutableByteCollection
ObjectByteHashMap.ValuesCollection. newEmpty()
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. newEmpty()
MutableByteCollection
ShortByteHashMap.ValuesCollection. newEmpty()
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. reject(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMap. reject(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMap.ValuesCollection. reject(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy. reject(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. reject(BytePredicate predicate)
MutableByteCollection
SynchronizedObjectByteMap. reject(BytePredicate predicate)
MutableByteCollection
UnmodifiableObjectByteMap. reject(BytePredicate predicate)
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. select(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMap. select(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMap.ValuesCollection. select(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy. select(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. select(BytePredicate predicate)
MutableByteCollection
SynchronizedObjectByteMap. select(BytePredicate predicate)
MutableByteCollection
UnmodifiableObjectByteMap. select(BytePredicate predicate)
MutableByteCollection
ByteByteHashMap. values()
MutableByteCollection
CharByteHashMap. values()
MutableByteCollection
DoubleByteHashMap. values()
MutableByteCollection
FloatByteHashMap. values()
MutableByteCollection
IntByteHashMap. values()
MutableByteCollection
LongByteHashMap. values()
MutableByteCollection
ObjectByteHashMap. values()
MutableByteCollection
ObjectByteHashMapWithHashingStrategy. values()
MutableByteCollection
ShortByteHashMap. values()
MutableByteCollection
SynchronizedByteByteMap. values()
MutableByteCollection
SynchronizedCharByteMap. values()
MutableByteCollection
SynchronizedDoubleByteMap. values()
MutableByteCollection
SynchronizedFloatByteMap. values()
MutableByteCollection
SynchronizedIntByteMap. values()
MutableByteCollection
SynchronizedLongByteMap. values()
MutableByteCollection
SynchronizedObjectByteMap. values()
MutableByteCollection
SynchronizedShortByteMap. values()
MutableByteCollection
UnmodifiableByteByteMap. values()
MutableByteCollection
UnmodifiableCharByteMap. values()
MutableByteCollection
UnmodifiableDoubleByteMap. values()
MutableByteCollection
UnmodifiableFloatByteMap. values()
MutableByteCollection
UnmodifiableIntByteMap. values()
MutableByteCollection
UnmodifiableLongByteMap. values()
MutableByteCollection
UnmodifiableObjectByteMap. values()
MutableByteCollection
UnmodifiableShortByteMap. values()
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. with(byte element)
MutableByteCollection
ObjectByteHashMap.ValuesCollection. with(byte element)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. with(byte element)
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. withAll(ByteIterable elements)
MutableByteCollection
ObjectByteHashMap.ValuesCollection. withAll(ByteIterable elements)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. withAll(ByteIterable elements)
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. without(byte element)
MutableByteCollection
ObjectByteHashMap.ValuesCollection. without(byte element)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. without(byte element)
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. withoutAll(ByteIterable elements)
MutableByteCollection
ObjectByteHashMap.ValuesCollection. withoutAll(ByteIterable elements)
MutableByteCollection
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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Class Description class
ByteHashSet
class
SynchronizedByteSet
A synchronized view of aMutableByteSet
.class
UnmodifiableByteSet
This 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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description <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 MutableByteCollection Modifier and Type Method Description static <T,R extends MutableByteCollection>
RArrayIterate. collectByte(T[] objectArray, ByteFunction<? super T> byteFunction, R target)
static <T,R extends MutableByteCollection>
RArrayListIterate. collectByte(java.util.ArrayList<T> list, ByteFunction<? super T> byteFunction, R target)
static <T,R extends MutableByteCollection>
RIterate. collectByte(java.lang.Iterable<T> iterable, ByteFunction<? super T> byteFunction, R target)
Same asIterate.collectByte(Iterable, ByteFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T,R extends MutableByteCollection>
RListIterate. collectByte(java.util.List<T> list, ByteFunction<? super T> byteFunction, R target)
static <K,V,R extends MutableByteCollection>
RMapIterate. collectByte(java.util.Map<K,V> map, ByteFunction<? super V> byteFunction, R target)
private static <T,R extends MutableByteCollection>
RArrayListIterate. collectByteFromInternalArray(java.util.ArrayList<T> source, ByteFunction<? super T> byteFunction, int elementsToCollect, R target)
Methods in org.eclipse.collections.impl.utility that return MutableByteCollection Modifier and Type Method Description static <T> MutableByteCollection
Iterate. collectByte(java.lang.Iterable<T> iterable, ByteFunction<? super T> byteFunction)
Returns a newbyte
collection with the results of applying the specified byteFunction for each element of the iterable.static <K,V>
MutableByteCollectionMapIterate. collectByte(java.util.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 MutableByteCollection Modifier and Type Method Description static <T,R extends MutableByteCollection>
RIterableIterate. collectByte(java.lang.Iterable<T> iterable, ByteFunction<? super T> byteFunction, R target)
static <T,R extends MutableByteCollection>
RIteratorIterate. collectByte(java.util.Iterator<T> iterator, ByteFunction<? super T> byteFunction, R target)
static <T,R extends MutableByteCollection>
RRandomAccessListIterate. collectByte(java.util.List<T> list, ByteFunction<? super T> byteFunction, R target)
Methods in org.eclipse.collections.impl.utility.internal that return MutableByteCollection Modifier and Type Method Description static <T> MutableByteCollection
IterableIterate. collectByte(java.lang.Iterable<T> iterable, ByteFunction<? super T> byteFunction)
static <T> MutableByteCollection
IteratorIterate. collectByte(java.util.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 MutableByteCollection Modifier and Type Method Description static <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)
-