Uses of Interface
org.eclipse.collections.api.ByteIterable
Packages that use ByteIterable
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 factory API for creating immutable primitive list instances.
This package contains factory API for creating primitive set instances.
This package contains factory API for creating primitive stack instances.
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 mutable and immutable primitive stack API.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of the
MutableBiMap interface.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 immutable primitive set interfaces.
This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the
ImmutableStack interface.This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the
MutableStack interface.This package contains implementations of the mutable primitive stack interfaces.
-
Uses of ByteIterable in org.eclipse.collections.api
Subinterfaces of ByteIterable in org.eclipse.collections.apiModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return ByteIterableModifier and TypeMethodDescriptionRichIterable.collectByte(ByteFunction<? super T> byteFunction) Returns a new primitivebyteiterable with the results of applying the specified function on each element of the source collection.ByteIterable.reject(BytePredicate predicate) Returns a new ByteIterable with all of the elements in the ByteIterable that return false for the specified predicate.ByteIterable.select(BytePredicate predicate) Returns a new ByteIterable with all of the elements in the ByteIterable that return true for the specified predicate.default ByteIterableByteIterable.tap(ByteProcedure procedure) Methods in org.eclipse.collections.api that return types with arguments of type ByteIterableModifier and TypeMethodDescriptiondefault RichIterable<ByteIterable> ByteIterable.chunk(int size) Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type ByteIterableModifier and TypeMethodDescriptiondefault booleanByteIterable.containsAll(ByteIterable source) Returns true if all of the values specified in the source ByteIterable are contained in the ByteIterable, and false if they are not.default booleanByteIterable.containsAny(ByteIterable source) Returns true if any of the values specified in the source ByteIterable are contained in the ByteIterable, and false if they are not.default booleanByteIterable.containsNone(ByteIterable source) Returns true if none of the values specified in the source ByteIterable are contained in the ByteIterable, and false if they are.Method parameters in org.eclipse.collections.api with type arguments of type ByteIterableModifier and TypeMethodDescriptiondefault <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. -
Uses of ByteIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.bag.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveBag.stg.interfaceThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceThis file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteBag.newWithAll(ByteIterable elements) ImmutableByteBag.newWithoutAll(ByteIterable elements) MutableByteBag.withAll(ByteIterable elements) MutableByteBag.withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.collection.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceThis file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanMutableByteCollection.addAll(ByteIterable source) ImmutableByteCollection.newWithAll(ByteIterable elements) ImmutableByteCollection.newWithoutAll(ByteIterable elements) booleanMutableByteCollection.removeAll(ByteIterable source) booleanMutableByteCollection.retainAll(ByteIterable elements) MutableByteCollection.withAll(ByteIterable elements) MutableByteCollection.withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteBagFactory.ofAll(ByteIterable items) MutableByteBagFactory.ofAll(ByteIterable items) ImmutableByteBagFactory.withAll(ByteIterable items) MutableByteBagFactory.withAll(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteListFactory.ofAll(ByteIterable items) MutableByteListFactory.ofAll(ByteIterable items) ImmutableByteListFactory.withAll(ByteIterable items) MutableByteListFactory.withAll(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteSetFactory.ofAll(ByteIterable items) MutableByteSetFactory.ofAll(ByteIterable items) ImmutableByteSetFactory.withAll(ByteIterable items) MutableByteSetFactory.withAll(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteStackFactory.ofAll(ByteIterable items) MutableByteStackFactory.ofAll(ByteIterable items) ImmutableByteStackFactory.ofAllReversed(ByteIterable items) MutableByteStackFactory.ofAllReversed(ByteIterable items) ImmutableByteStackFactory.withAll(ByteIterable items) MutableByteStackFactory.withAll(ByteIterable items) ImmutableByteStackFactory.withAllReversed(ByteIterable items) MutableByteStackFactory.withAllReversed(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveList.stg.interfaceThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceThis file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanMutableByteList.addAllAtIndex(int index, ByteIterable source) ImmutableByteList.newWithAll(ByteIterable elements) ImmutableByteList.newWithoutAll(ByteIterable elements) MutableByteList.withAll(ByteIterable elements) MutableByteList.withoutAll(ByteIterable elements) default ListIterable<ByteBytePair> ByteList.zipByte(ByteIterable iterable) Returns aListIterableformed from thisByteListand anotherByteListby combining corresponding elements in pairs.default ImmutableList<ByteBytePair> ImmutableByteList.zipByte(ByteIterable iterable) Returns anImmutableListformed from thisImmutableByteListand anotherByteListby combining corresponding elements in pairs.default MutableList<ByteBytePair> MutableByteList.zipByte(ByteIterable iterable) Returns aMutableListformed from thisMutableByteListand anotherByteListby combining corresponding elements in pairs. -
Uses of ByteIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.map.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitiveValuesMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file objectPrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteBooleanMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteByteMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteCharMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteDoubleMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteFloatMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteIntMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteLongMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteObjectMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteShortMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.MutableByteBooleanMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteByteMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteCharMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteDoubleMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteFloatMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteIntMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteLongMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteObjectMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteShortMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map. -
Uses of ByteIterable in org.eclipse.collections.api.ordered.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.ordered.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceThis file was automatically generated from template file reversiblePrimitiveIterable.stg. -
Uses of ByteIterable in org.eclipse.collections.api.set.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.set.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveSet.stg.interfaceThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceThis file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteSet.newWithAll(ByteIterable elements) ImmutableByteSet.newWithoutAll(ByteIterable elements) MutableByteSet.withAll(ByteIterable elements) MutableByteSet.withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.stack.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveStack.stg.interfaceThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceThis file was automatically generated from template file mutablePrimitiveStack.stg. -
Uses of ByteIterable in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return ByteIterableModifier and TypeMethodDescriptionUnmodifiableRichIterable.collectByte(ByteFunction<? super T> byteFunction) Method parameters in org.eclipse.collections.impl with type arguments of type ByteIterableModifier and TypeMethodDescription<R extends MutableByteCollection>
RUnmodifiableRichIterable.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) -
Uses of ByteIterable in org.eclipse.collections.impl.bag
Method parameters in org.eclipse.collections.impl.bag with type arguments of type ByteIterableModifier and TypeMethodDescription<R extends MutableByteCollection>
RAbstractBag.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) -
Uses of ByteIterable in org.eclipse.collections.impl.bag.immutable.primitive
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement ByteIterableModifier and TypeClassDescription(package private) final classImmutableByteEmptyBag is an optimization forImmutableByteBagof size 0.(package private) final classImmutableByteHashBag is the non-modifiable equivalent ofByteHashBag.(package private) final classImmutableByteSingletonBag is an optimization forImmutableByteBagof size 1.Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type ByteIterableModifier and TypeMethodDescriptionImmutableByteEmptyBag.chunk(int size) ImmutableByteHashBag.chunk(int size) ImmutableByteSingletonBag.chunk(int size) Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanImmutableByteEmptyBag.containsAll(ByteIterable source) booleanImmutableByteHashBag.containsAll(ByteIterable source) booleanImmutableByteSingletonBag.containsAll(ByteIterable source) ImmutableByteEmptyBag.newWithAll(ByteIterable elements) ImmutableByteHashBag.newWithAll(ByteIterable elements) ImmutableByteSingletonBag.newWithAll(ByteIterable elements) ImmutableByteEmptyBag.newWithoutAll(ByteIterable elements) ImmutableByteHashBag.newWithoutAll(ByteIterable elements) ImmutableByteSingletonBag.newWithoutAll(ByteIterable elements) ImmutableByteBagFactoryImpl.ofAll(ByteIterable items) ImmutableByteBagFactoryImpl.withAll(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement ByteIterableModifier 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.Methods in org.eclipse.collections.impl.bag.mutable.primitive that return types with arguments of type ByteIterableMethods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanByteHashBag.addAll(ByteIterable source) static ByteHashBagByteHashBag.newBag(ByteIterable source) MutableByteBagFactoryImpl.ofAll(ByteIterable items) booleanByteHashBag.removeAll(ByteIterable source) booleanByteHashBag.retainAll(ByteIterable source) ByteHashBag.withAll(ByteIterable iterable) MutableByteBagFactoryImpl.withAll(ByteIterable items) SynchronizedByteBag.withAll(ByteIterable elements) UnmodifiableByteBag.withAll(ByteIterable elements) ByteHashBag.withoutAll(ByteIterable iterable) SynchronizedByteBag.withoutAll(ByteIterable elements) UnmodifiableByteBag.withoutAll(ByteIterable elements) Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type ByteIterable -
Uses of ByteIterable in org.eclipse.collections.impl.bimap
Method parameters in org.eclipse.collections.impl.bimap with type arguments of type ByteIterableModifier and TypeMethodDescription<R extends MutableByteCollection>
RAbstractBiMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) -
Uses of ByteIterable in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return ByteIterableModifier and TypeMethodDescriptionUnmodifiableBiMap.collectByte(ByteFunction<? super V> byteFunction) Method parameters in org.eclipse.collections.impl.bimap.mutable with type arguments of type ByteIterableModifier and TypeMethodDescription<R extends MutableByteCollection>
RUnmodifiableBiMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) -
Uses of ByteIterable in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return ByteIterableModifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.collectByte(ByteFunction<? super T> byteFunction) Method parameters in org.eclipse.collections.impl.collection with type arguments of type ByteIterableModifier and TypeMethodDescription<R extends MutableByteCollection>
RAbstractSynchronizedRichIterable.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) -
Uses of ByteIterable in org.eclipse.collections.impl.collection.mutable
Method parameters in org.eclipse.collections.impl.collection.mutable with type arguments of type ByteIterableModifier and TypeMethodDescription<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) -
Uses of ByteIterable in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement ByteIterableModifier 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.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return types with arguments of type ByteIterableModifier and TypeMethodDescriptionAbstractSynchronizedByteCollection.chunk(int size) AbstractUnmodifiableByteCollection.chunk(int size) Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanAbstractSynchronizedByteCollection.addAll(ByteIterable source) booleanAbstractUnmodifiableByteCollection.addAll(ByteIterable source) booleanAbstractSynchronizedByteCollection.containsAll(ByteIterable source) booleanAbstractUnmodifiableByteCollection.containsAll(ByteIterable source) booleanAbstractSynchronizedByteCollection.containsAny(ByteIterable source) booleanAbstractUnmodifiableByteCollection.containsAny(ByteIterable source) booleanAbstractSynchronizedByteCollection.containsNone(ByteIterable source) booleanAbstractUnmodifiableByteCollection.containsNone(ByteIterable source) booleanAbstractSynchronizedByteCollection.removeAll(ByteIterable source) booleanAbstractUnmodifiableByteCollection.removeAll(ByteIterable source) booleanAbstractSynchronizedByteCollection.retainAll(ByteIterable source) booleanAbstractUnmodifiableByteCollection.retainAll(ByteIterable source) AbstractSynchronizedByteCollection.withAll(ByteIterable elements) AbstractUnmodifiableByteCollection.withAll(ByteIterable elements) AbstractSynchronizedByteCollection.withoutAll(ByteIterable elements) AbstractUnmodifiableByteCollection.withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement ByteIterableModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractLazyPrimitiveIterable.stg.classThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classThis file was automatically generated from template file collectPrimitiveIterable.stg.classThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classThis file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.classThis file was automatically generated from template file reversePrimitiveIterable.stg.classThis file was automatically generated from template file selectPrimitiveIterable.stg.classThis file was automatically generated from template file tapPrimitiveIterable.stg.Subclasses with type arguments of type ByteIterable in org.eclipse.collections.impl.lazy.primitiveModifier and TypeClassDescriptionclassThis file was automatically generated from template file chunkPrimitiveIterable.stg.Classes in org.eclipse.collections.impl.lazy.primitive that implement interfaces with type arguments of type ByteIterableFields in org.eclipse.collections.impl.lazy.primitive declared as ByteIterableModifier and TypeFieldDescriptionprivate final ByteIterableChunkByteIterable.adaptedprivate final ByteIterableTapByteIterable.adaptedprivate final ByteIterableLazyByteIterableAdapter.delegateprivate final ByteIterableSelectByteIterable.delegateprivate final ByteIterableCollectByteToBooleanIterable.iterableprivate final ByteIterableCollectByteToByteIterable.iterableprivate final ByteIterableCollectByteToCharIterable.iterableprivate final ByteIterableCollectByteToDoubleIterable.iterableprivate final ByteIterableCollectByteToFloatIterable.iterableprivate final ByteIterableCollectByteToIntIterable.iterableprivate final ByteIterableCollectByteToLongIterable.iterableprivate final ByteIterableCollectByteToObjectIterable.iterableprivate final ByteIterableCollectByteToShortIterable.iterableprivate final ByteIterableFlatCollectByteToObjectIterable.iterableMethods in org.eclipse.collections.impl.lazy.primitive that return ByteIterableMethods in org.eclipse.collections.impl.lazy.primitive that return types with arguments of type ByteIterableModifier and TypeMethodDescriptionAbstractLazyByteIterable.chunk(int size) ChunkByteIterable.iterator()Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanAbstractLazyByteIterable.containsAll(ByteIterable source) booleanCollectByteIterable.containsAll(ByteIterable source) booleanLazyByteIterableAdapter.containsAll(ByteIterable source) booleanReverseByteIterable.containsAll(ByteIterable source) booleanSelectByteIterable.containsAll(ByteIterable source) Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type ByteIterableModifier and TypeMethodDescriptionvoidChunkByteIterable.each(Procedure<? super ByteIterable> procedure) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type ByteIterableModifierConstructorDescriptionChunkByteIterable(ByteIterable delegate, int size) ChunkByteIterator(ByteIterable iterable, int size) CollectByteToBooleanIterable(ByteIterable iterable, ByteToBooleanFunction function) CollectByteToByteIterable(ByteIterable iterable, ByteToByteFunction function) CollectByteToCharIterable(ByteIterable iterable, ByteToCharFunction function) CollectByteToDoubleIterable(ByteIterable iterable, ByteToDoubleFunction function) CollectByteToFloatIterable(ByteIterable iterable, ByteToFloatFunction function) CollectByteToIntIterable(ByteIterable iterable, ByteToIntFunction function) CollectByteToLongIterable(ByteIterable iterable, ByteToLongFunction function) CollectByteToObjectIterable(ByteIterable iterable, ByteToObjectFunction<? extends V> function) CollectByteToShortIterable(ByteIterable iterable, ByteToShortFunction function) FlatCollectByteIterator(ByteIterable iterable, ByteToObjectFunction<? extends Iterable<V>> newFunction) FlatCollectByteToObjectIterable(ByteIterable iterable, ByteToObjectFunction<? extends Iterable<V>> function) LazyByteIterableAdapter(ByteIterable delegate) SelectByteIterable(ByteIterable delegate, BytePredicate predicate) privateSelectByteIterator(ByteIterable iterable, BytePredicate predicate) TapByteIterable(ByteIterable delegate, ByteProcedure procedure) TapByteIterator(ByteIterable iterable, ByteProcedure procedure) -
Uses of ByteIterable in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ByteIterableModifier and TypeClassDescription(package private) final classImmutableByteArrayList is the non-modifiable equivalent ofByteArrayList.(package private) final classImmutableByteEmptyList is an optimization forImmutableByteListof size 0.(package private) final classImmutableByteSingletonList is an optimization forImmutableByteListof size 1.Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type ByteIterableModifier and TypeMethodDescriptionImmutableByteArrayList.chunk(int size) ImmutableByteEmptyList.chunk(int size) ImmutableByteSingletonList.chunk(int size) Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanImmutableByteArrayList.containsAll(ByteIterable source) booleanImmutableByteEmptyList.containsAll(ByteIterable source) booleanImmutableByteSingletonList.containsAll(ByteIterable source) static ImmutableByteArrayListImmutableByteArrayList.newList(ByteIterable iterable) ImmutableByteArrayList.newWithAll(ByteIterable elements) ImmutableByteEmptyList.newWithAll(ByteIterable elements) ImmutableByteSingletonList.newWithAll(ByteIterable elements) ImmutableByteArrayList.newWithoutAll(ByteIterable elements) ImmutableByteEmptyList.newWithoutAll(ByteIterable elements) ImmutableByteSingletonList.newWithoutAll(ByteIterable elements) ImmutableByteListFactoryImpl.ofAll(ByteIterable items) ImmutableByteListFactoryImpl.withAll(ByteIterable items) ImmutableByteArrayList.zipByte(ByteIterable iterable) ImmutableByteEmptyList.zipByte(ByteIterable iterable) ImmutableByteSingletonList.zipByte(ByteIterable iterable) -
Uses of ByteIterable in org.eclipse.collections.impl.list.mutable
Method parameters in org.eclipse.collections.impl.list.mutable with type arguments of type ByteIterableModifier and TypeMethodDescription<R extends MutableByteCollection>
RFastList.flatCollectByte(Function<? super T, ? extends ByteIterable> function, R target) -
Uses of ByteIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement ByteIterableModifier 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 that return types with arguments of type ByteIterableMethods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanByteArrayList.addAll(ByteIterable source) booleanByteArrayList.addAllAtIndex(int index, ByteIterable source) booleanSynchronizedByteList.addAllAtIndex(int index, ByteIterable source) booleanUnmodifiableByteList.addAllAtIndex(int index, ByteIterable source) static ByteArrayListByteArrayList.newList(ByteIterable source) MutableByteListFactoryImpl.ofAll(ByteIterable items) booleanByteArrayList.removeAll(ByteIterable source) booleanByteArrayList.retainAll(ByteIterable source) ByteArrayList.withAll(ByteIterable elements) MutableByteListFactoryImpl.withAll(ByteIterable items) SynchronizedByteList.withAll(ByteIterable elements) UnmodifiableByteList.withAll(ByteIterable elements) ByteArrayList.withoutAll(ByteIterable elements) SynchronizedByteList.withoutAll(ByteIterable elements) UnmodifiableByteList.withoutAll(ByteIterable elements) ByteArrayList.zipByte(ByteIterable iterable) SynchronizedByteList.zipByte(ByteIterable iterable) UnmodifiableByteList.zipByte(ByteIterable iterable) -
Uses of ByteIterable in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ByteIterableModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) final classImmutableByteByteEmptyMap is an optimization forImmutableByteByteMapof size 0.(package private) final classImmutableByteByteHashMap is the non-modifiable equivalent ofByteByteHashMap.(package private) final classImmutableByteByteSingletonMap is an optimization forImmutableByteByteMapof size 1.(package private) final classImmutableCharByteEmptyMap is an optimization forImmutableCharByteMapof size 0.(package private) final classImmutableCharByteHashMap is the non-modifiable equivalent ofCharByteHashMap.(package private) final classImmutableCharByteSingletonMap is an optimization forImmutableCharByteMapof size 1.(package private) final classImmutableDoubleByteEmptyMap is an optimization forImmutableDoubleByteMapof size 0.(package private) final classImmutableDoubleByteHashMap is the non-modifiable equivalent ofDoubleByteHashMap.(package private) final classImmutableDoubleByteSingletonMap is an optimization forImmutableDoubleByteMapof size 1.(package private) final classImmutableFloatByteEmptyMap is an optimization forImmutableFloatByteMapof size 0.(package private) final classImmutableFloatByteHashMap is the non-modifiable equivalent ofFloatByteHashMap.(package private) final classImmutableFloatByteSingletonMap is an optimization forImmutableFloatByteMapof size 1.(package private) final classImmutableIntByteEmptyMap is an optimization forImmutableIntByteMapof size 0.(package private) final classImmutableIntByteHashMap is the non-modifiable equivalent ofIntByteHashMap.(package private) final classImmutableIntByteSingletonMap is an optimization forImmutableIntByteMapof size 1.(package private) final classImmutableLongByteEmptyMap is an optimization forImmutableLongByteMapof size 0.(package private) final classImmutableLongByteHashMap is the non-modifiable equivalent ofLongByteHashMap.(package private) final classImmutableLongByteSingletonMap is an optimization forImmutableLongByteMapof size 1.(package private) final classImmutableObjectByteEmptyMap is an optimization forImmutableObjectByteMapof size 0.(package private) final classImmutableObjectByteHashMap is the non-modifiable equivalent ofObjectByteHashMap.(package private) final classImmutableObjectByteSingletonMap is an optimization forImmutableObjectByteMapof size 1.(package private) final classImmutableShortByteEmptyMap is an optimization forImmutableShortByteMapof size 0.(package private) final classImmutableShortByteHashMap is the non-modifiable equivalent ofShortByteHashMap.(package private) final classImmutableShortByteSingletonMap is an optimization forImmutableShortByteMapof size 1.Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type ByteIterableModifier and TypeMethodDescriptionImmutableByteByteEmptyMap.chunk(int size) ImmutableByteByteHashMap.chunk(int size) ImmutableByteByteSingletonMap.chunk(int size) ImmutableCharByteEmptyMap.chunk(int size) ImmutableCharByteHashMap.chunk(int size) ImmutableCharByteSingletonMap.chunk(int size) ImmutableDoubleByteEmptyMap.chunk(int size) ImmutableDoubleByteHashMap.chunk(int size) ImmutableDoubleByteSingletonMap.chunk(int size) ImmutableFloatByteEmptyMap.chunk(int size) ImmutableFloatByteHashMap.chunk(int size) ImmutableFloatByteSingletonMap.chunk(int size) ImmutableIntByteEmptyMap.chunk(int size) ImmutableIntByteHashMap.chunk(int size) ImmutableIntByteSingletonMap.chunk(int size) ImmutableLongByteEmptyMap.chunk(int size) ImmutableLongByteHashMap.chunk(int size) ImmutableLongByteSingletonMap.chunk(int size) ImmutableObjectByteEmptyMap.chunk(int size) ImmutableObjectByteHashMap.chunk(int size) ImmutableObjectByteSingletonMap.chunk(int size) ImmutableShortByteEmptyMap.chunk(int size) ImmutableShortByteHashMap.chunk(int size) ImmutableShortByteSingletonMap.chunk(int size) Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanImmutableByteByteEmptyMap.containsAll(ByteIterable source) booleanImmutableByteByteHashMap.containsAll(ByteIterable source) booleanImmutableByteByteSingletonMap.containsAll(ByteIterable source) booleanImmutableCharByteEmptyMap.containsAll(ByteIterable source) booleanImmutableCharByteHashMap.containsAll(ByteIterable source) booleanImmutableCharByteSingletonMap.containsAll(ByteIterable source) booleanImmutableDoubleByteEmptyMap.containsAll(ByteIterable source) booleanImmutableDoubleByteHashMap.containsAll(ByteIterable source) booleanImmutableDoubleByteSingletonMap.containsAll(ByteIterable source) booleanImmutableFloatByteEmptyMap.containsAll(ByteIterable source) booleanImmutableFloatByteHashMap.containsAll(ByteIterable source) booleanImmutableFloatByteSingletonMap.containsAll(ByteIterable source) booleanImmutableIntByteEmptyMap.containsAll(ByteIterable source) booleanImmutableIntByteHashMap.containsAll(ByteIterable source) booleanImmutableIntByteSingletonMap.containsAll(ByteIterable source) booleanImmutableLongByteEmptyMap.containsAll(ByteIterable source) booleanImmutableLongByteHashMap.containsAll(ByteIterable source) booleanImmutableLongByteSingletonMap.containsAll(ByteIterable source) booleanImmutableObjectByteEmptyMap.containsAll(ByteIterable source) booleanImmutableObjectByteHashMap.containsAll(ByteIterable source) booleanImmutableObjectByteSingletonMap.containsAll(ByteIterable source) booleanImmutableShortByteEmptyMap.containsAll(ByteIterable source) booleanImmutableShortByteHashMap.containsAll(ByteIterable source) booleanImmutableShortByteSingletonMap.containsAll(ByteIterable source) ImmutableByteBooleanEmptyMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteBooleanHashMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteBooleanSingletonMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteByteEmptyMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteByteHashMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteByteSingletonMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteCharEmptyMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteCharHashMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteCharSingletonMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteDoubleEmptyMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteDoubleHashMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteDoubleSingletonMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteFloatEmptyMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteFloatHashMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteFloatSingletonMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteIntEmptyMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteIntHashMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteIntSingletonMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteLongEmptyMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteLongHashMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteLongSingletonMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteObjectEmptyMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteObjectHashMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteObjectSingletonMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteShortEmptyMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteShortHashMap.newWithoutAllKeys(ByteIterable keys) ImmutableByteShortSingletonMap.newWithoutAllKeys(ByteIterable keys) Method parameters in org.eclipse.collections.impl.map.immutable.primitive with type arguments of type ByteIterableModifier and TypeMethodDescription<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) -
Uses of ByteIterable in org.eclipse.collections.impl.map.mutable
Method parameters in org.eclipse.collections.impl.map.mutable with type arguments of type ByteIterableModifier and TypeMethodDescription<R extends MutableByteCollection>
RUnmodifiableMutableMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) -
Uses of ByteIterable in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement ByteIterableModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.classThis file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.protected classprivate classprivate classclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private class(package private) classThis file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) classThis file was automatically generated from template file immutablePrimitiveMapKeySet.stgclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classclassThis file was automatically generated from template file objectPrimitiveHashMap.stg.private classclassThis file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private classclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classclassA synchronized view of aMutableByteByteMap.classA synchronized view of aMutableCharByteMap.classA synchronized view of aMutableDoubleByteMap.classA synchronized view of aMutableFloatByteMap.classA synchronized view of aMutableIntByteMap.classA synchronized view of aMutableLongByteMap.classA synchronized view of aMutableObjectByteMap.classA synchronized view of aMutableShortByteMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classThis file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type ByteIterableModifier and TypeMethodDescriptionAbstractMutableByteKeySet.chunk(int size) AbstractMutableByteValuesMap.AbstractByteValuesCollection.chunk(int size) AbstractMutableByteValuesMap.chunk(int size) ObjectByteHashMap.chunk(int size) ObjectByteHashMap.ValuesCollection.chunk(int size) ObjectByteHashMapWithHashingStrategy.chunk(int size) ObjectByteHashMapWithHashingStrategy.ValuesCollection.chunk(int size) SynchronizedByteByteMap.chunk(int size) SynchronizedCharByteMap.chunk(int size) SynchronizedDoubleByteMap.chunk(int size) SynchronizedFloatByteMap.chunk(int size) SynchronizedIntByteMap.chunk(int size) SynchronizedLongByteMap.chunk(int size) SynchronizedObjectByteMap.chunk(int size) SynchronizedShortByteMap.chunk(int size) UnmodifiableByteByteMap.chunk(int size) UnmodifiableCharByteMap.chunk(int size) UnmodifiableDoubleByteMap.chunk(int size) UnmodifiableFloatByteMap.chunk(int size) UnmodifiableIntByteMap.chunk(int size) UnmodifiableLongByteMap.chunk(int size) UnmodifiableObjectByteMap.chunk(int size) UnmodifiableShortByteMap.chunk(int size) Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanAbstractMutableByteKeySet.addAll(ByteIterable source) booleanAbstractMutableByteValuesMap.AbstractByteValuesCollection.addAll(ByteIterable source) booleanObjectByteHashMap.ValuesCollection.addAll(ByteIterable source) booleanObjectByteHashMapWithHashingStrategy.ValuesCollection.addAll(ByteIterable source) booleanAbstractMutableByteKeySet.containsAll(ByteIterable source) booleanAbstractMutableByteValuesMap.AbstractByteValuesCollection.containsAll(ByteIterable source) booleanAbstractMutableByteValuesMap.containsAll(ByteIterable source) booleanByteBooleanHashMap.KeysView.containsAll(ByteIterable source) booleanObjectByteHashMap.containsAll(ByteIterable source) booleanObjectByteHashMap.ValuesCollection.containsAll(ByteIterable source) booleanObjectByteHashMapWithHashingStrategy.containsAll(ByteIterable source) booleanObjectByteHashMapWithHashingStrategy.ValuesCollection.containsAll(ByteIterable source) booleanSynchronizedByteByteMap.containsAll(ByteIterable source) booleanSynchronizedCharByteMap.containsAll(ByteIterable source) booleanSynchronizedDoubleByteMap.containsAll(ByteIterable source) booleanSynchronizedFloatByteMap.containsAll(ByteIterable source) booleanSynchronizedIntByteMap.containsAll(ByteIterable source) booleanSynchronizedLongByteMap.containsAll(ByteIterable source) booleanSynchronizedObjectByteMap.containsAll(ByteIterable source) booleanSynchronizedShortByteMap.containsAll(ByteIterable source) booleanUnmodifiableByteByteMap.containsAll(ByteIterable source) booleanUnmodifiableCharByteMap.containsAll(ByteIterable source) booleanUnmodifiableDoubleByteMap.containsAll(ByteIterable source) booleanUnmodifiableFloatByteMap.containsAll(ByteIterable source) booleanUnmodifiableIntByteMap.containsAll(ByteIterable source) booleanUnmodifiableLongByteMap.containsAll(ByteIterable source) booleanUnmodifiableObjectByteMap.containsAll(ByteIterable source) booleanUnmodifiableShortByteMap.containsAll(ByteIterable source) booleanAbstractMutableByteKeySet.removeAll(ByteIterable source) booleanAbstractMutableByteValuesMap.AbstractByteValuesCollection.removeAll(ByteIterable source) booleanObjectByteHashMap.ValuesCollection.removeAll(ByteIterable source) booleanObjectByteHashMapWithHashingStrategy.ValuesCollection.removeAll(ByteIterable source) booleanByteBooleanHashMap.KeySet.retainAll(ByteIterable source) booleanByteByteHashMap.KeySet.retainAll(ByteIterable source) booleanByteByteHashMap.ValuesCollection.retainAll(ByteIterable source) booleanByteCharHashMap.KeySet.retainAll(ByteIterable source) booleanByteDoubleHashMap.KeySet.retainAll(ByteIterable source) booleanByteFloatHashMap.KeySet.retainAll(ByteIterable source) booleanByteIntHashMap.KeySet.retainAll(ByteIterable source) booleanByteLongHashMap.KeySet.retainAll(ByteIterable source) booleanByteObjectHashMap.KeySet.retainAll(ByteIterable source) booleanByteShortHashMap.KeySet.retainAll(ByteIterable source) booleanCharByteHashMap.ValuesCollection.retainAll(ByteIterable source) booleanDoubleByteHashMap.ValuesCollection.retainAll(ByteIterable source) booleanFloatByteHashMap.ValuesCollection.retainAll(ByteIterable source) booleanIntByteHashMap.ValuesCollection.retainAll(ByteIterable source) booleanLongByteHashMap.ValuesCollection.retainAll(ByteIterable source) booleanObjectByteHashMap.ValuesCollection.retainAll(ByteIterable source) booleanObjectByteHashMapWithHashingStrategy.ValuesCollection.retainAll(ByteIterable source) booleanShortByteHashMap.ValuesCollection.retainAll(ByteIterable source) AbstractMutableByteKeySet.withAll(ByteIterable elements) AbstractMutableByteValuesMap.AbstractByteValuesCollection.withAll(ByteIterable elements) ObjectByteHashMap.ValuesCollection.withAll(ByteIterable elements) ObjectByteHashMapWithHashingStrategy.ValuesCollection.withAll(ByteIterable elements) AbstractMutableByteKeySet.withoutAll(ByteIterable elements) AbstractMutableByteValuesMap.AbstractByteValuesCollection.withoutAll(ByteIterable elements) ObjectByteHashMap.ValuesCollection.withoutAll(ByteIterable elements) ObjectByteHashMapWithHashingStrategy.ValuesCollection.withoutAll(ByteIterable elements) ByteBooleanHashMap.withoutAllKeys(ByteIterable keys) ByteByteHashMap.withoutAllKeys(ByteIterable keys) ByteCharHashMap.withoutAllKeys(ByteIterable keys) ByteDoubleHashMap.withoutAllKeys(ByteIterable keys) ByteFloatHashMap.withoutAllKeys(ByteIterable keys) ByteIntHashMap.withoutAllKeys(ByteIterable keys) ByteLongHashMap.withoutAllKeys(ByteIterable keys) ByteObjectHashMap.withoutAllKeys(ByteIterable keys) ByteShortHashMap.withoutAllKeys(ByteIterable keys) SynchronizedByteBooleanMap.withoutAllKeys(ByteIterable keys) SynchronizedByteByteMap.withoutAllKeys(ByteIterable keys) SynchronizedByteCharMap.withoutAllKeys(ByteIterable keys) SynchronizedByteDoubleMap.withoutAllKeys(ByteIterable keys) SynchronizedByteFloatMap.withoutAllKeys(ByteIterable keys) SynchronizedByteIntMap.withoutAllKeys(ByteIterable keys) SynchronizedByteLongMap.withoutAllKeys(ByteIterable keys) SynchronizedByteObjectMap.withoutAllKeys(ByteIterable keys) SynchronizedByteShortMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteBooleanMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteByteMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteCharMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteDoubleMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteFloatMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteIntMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteLongMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteObjectMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteShortMap.withoutAllKeys(ByteIterable keys) Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type ByteIterableModifier and TypeMethodDescription<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) -
Uses of ByteIterable in org.eclipse.collections.impl.map.ordered.mutable
Method parameters in org.eclipse.collections.impl.map.ordered.mutable with type arguments of type ByteIterableModifier and TypeMethodDescription<R extends MutableByteCollection>
RUnmodifiableMutableOrderedMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) -
Uses of ByteIterable in org.eclipse.collections.impl.map.sorted.mutable
Method parameters in org.eclipse.collections.impl.map.sorted.mutable with type arguments of type ByteIterableModifier and TypeMethodDescription<R extends MutableByteCollection>
RUnmodifiableTreeMap.flatCollectByte(Function<? super V, ? extends ByteIterable> function, R target) -
Uses of ByteIterable in org.eclipse.collections.impl.primitive
Classes in org.eclipse.collections.impl.primitive that implement ByteIterableModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractPrimitiveIterable.stg.classA synchronized view of a ByteIterable.Fields in org.eclipse.collections.impl.primitive declared as ByteIterableMethods in org.eclipse.collections.impl.primitive that return ByteIterableModifier and TypeMethodDescriptionSynchronizedByteIterable.reject(BytePredicate predicate) SynchronizedByteIterable.select(BytePredicate predicate) Methods in org.eclipse.collections.impl.primitive that return types with arguments of type ByteIterableMethods in org.eclipse.collections.impl.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanSynchronizedByteIterable.containsAll(ByteIterable source) booleanSynchronizedByteIterable.containsAny(ByteIterable source) booleanSynchronizedByteIterable.containsNone(ByteIterable source) static SynchronizedByteIterableSynchronizedByteIterable.of(ByteIterable iterable) This method will take a ByteIterable and wrap it directly in a SynchronizedByteIterable.static SynchronizedByteIterableSynchronizedByteIterable.of(ByteIterable iterable, Object lock) This method will take a ByteIterable and wrap it directly in a SynchronizedByteIterable.Constructors in org.eclipse.collections.impl.primitive with parameters of type ByteIterableModifierConstructorDescriptionprotectedSynchronizedByteIterable(ByteIterable iterable) protectedSynchronizedByteIterable(ByteIterable iterable, Object newLock) -
Uses of ByteIterable in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement ByteIterableModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) final classImmutableByteEmptySet is an optimization forImmutableByteSetof size 0.(package private) final classImmutableByteSingletonSet is an optimization forImmutableByteSetof size 1.Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type ByteIterableModifier and TypeMethodDescriptionAbstractImmutableByteSet.chunk(int size) ImmutableByteEmptySet.chunk(int size) ImmutableByteSingletonSet.chunk(int size) Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanImmutableByteEmptySet.containsAll(ByteIterable source) booleanImmutableByteSingletonSet.containsAll(ByteIterable source) AbstractImmutableByteSet.newWithAll(ByteIterable elements) ImmutableByteEmptySet.newWithAll(ByteIterable elements) ImmutableByteSingletonSet.newWithAll(ByteIterable elements) AbstractImmutableByteSet.newWithoutAll(ByteIterable elements) ImmutableByteEmptySet.newWithoutAll(ByteIterable elements) ImmutableByteSingletonSet.newWithoutAll(ByteIterable elements) ImmutableByteSetFactoryImpl.ofAll(ByteIterable items) ImmutableByteSetFactoryImpl.withAll(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement ByteIterableModifier and TypeClassDescriptionfinal classprivate static final classclassA synchronized view of aMutableByteSet.classThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive that return types with arguments of type ByteIterableModifier and TypeMethodDescriptionByteHashSet.chunk(int size) ByteHashSet.ImmutableByteHashSet.chunk(int size) Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanByteHashSet.addAll(ByteIterable source) booleanByteHashSet.containsAll(ByteIterable source) booleanByteHashSet.ImmutableByteHashSet.containsAll(ByteIterable source) static ByteHashSetByteHashSet.newSet(ByteIterable source) ByteHashSet.ImmutableByteHashSet.newWithAll(ByteIterable elements) ByteHashSet.ImmutableByteHashSet.newWithoutAll(ByteIterable elements) MutableByteSetFactoryImpl.ofAll(ByteIterable items) booleanByteHashSet.removeAll(ByteIterable source) booleanByteHashSet.retainAll(ByteIterable source) ByteHashSet.withAll(ByteIterable elements) MutableByteSetFactoryImpl.withAll(ByteIterable items) SynchronizedByteSet.withAll(ByteIterable elements) UnmodifiableByteSet.withAll(ByteIterable elements) ByteHashSet.withoutAll(ByteIterable elements) SynchronizedByteSet.withoutAll(ByteIterable elements) UnmodifiableByteSet.withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement ByteIterableModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractPrimitiveSet.stg. -
Uses of ByteIterable in org.eclipse.collections.impl.stack.immutable
Method parameters in org.eclipse.collections.impl.stack.immutable with type arguments of type ByteIterableModifier and TypeMethodDescription<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 ByteIterable in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement ByteIterableModifier and TypeClassDescription(package private) final classImmutableByteArrayStack is the non-modifiable equivalent ofByteArrayStack.(package private) final classImmutableByteEmptyStack is an optimization forImmutableByteStackof size 0.(package private) final classImmutableByteSingletonStack is an optimization forImmutableByteStackof size 1.Methods in org.eclipse.collections.impl.stack.immutable.primitive that return types with arguments of type ByteIterableModifier and TypeMethodDescriptionImmutableByteEmptyStack.chunk(int size) ImmutableByteSingletonStack.chunk(int size) Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanImmutableByteEmptyStack.containsAll(ByteIterable source) booleanImmutableByteSingletonStack.containsAll(ByteIterable source) static ImmutableByteArrayStackImmutableByteArrayStack.newStack(ByteIterable iterable) static ImmutableByteArrayStackImmutableByteArrayStack.newStackFromTopToBottom(ByteIterable items) ImmutableByteStackFactoryImpl.ofAll(ByteIterable items) ImmutableByteStackFactoryImpl.ofAllReversed(ByteIterable items) ImmutableByteStackFactoryImpl.withAll(ByteIterable items) ImmutableByteStackFactoryImpl.withAllReversed(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.impl.stack.mutable
Method parameters in org.eclipse.collections.impl.stack.mutable with type arguments of type ByteIterableModifier and TypeMethodDescription<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 ByteIterable in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement ByteIterableModifier and TypeClassDescriptionclassByteArrayStack is similar toArrayStack, and is memory-optimized for byte primitives.classA synchronized view of aMutableByteStack.classThis file was automatically generated from template file unmodifiablePrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.mutable.primitive that return types with arguments of type ByteIterableModifier and TypeMethodDescriptionSynchronizedByteStack.chunk(int size) UnmodifiableByteStack.chunk(int size) Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanSynchronizedByteStack.containsAll(ByteIterable source) booleanUnmodifiableByteStack.containsAll(ByteIterable source) static ByteArrayStackByteArrayStack.newStack(ByteIterable items) static ByteArrayStackByteArrayStack.newStackFromTopToBottom(ByteIterable items) MutableByteStackFactoryImpl.ofAll(ByteIterable items) MutableByteStackFactoryImpl.ofAllReversed(ByteIterable items) MutableByteStackFactoryImpl.withAll(ByteIterable items) MutableByteStackFactoryImpl.withAllReversed(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement ByteIterableModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractPrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.primitive that return types with arguments of type ByteIterableMethods in org.eclipse.collections.impl.stack.primitive with parameters of type ByteIterable -
Uses of ByteIterable in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionstatic booleanByteIterableIterate.allSatisfy(ByteIterable iterable, BytePredicate predicate) static booleanByteIterableIterate.anySatisfy(ByteIterable iterable, BytePredicate predicate) static voidByteIterableIterate.appendString(ByteIterable iterable, Appendable appendable, String start, String separator, String end) static <V, R extends Collection<V>>
RByteIterableIterate.collect(ByteIterable iterable, ByteToObjectFunction<? extends V> function, R targetCollection) static intByteIterableIterate.count(ByteIterable iterable, BytePredicate predicate) static byteByteIterableIterate.detectIfNone(ByteIterable iterable, BytePredicate predicate, byte ifNone) static voidByteIterableIterate.forEach(ByteIterable iterable, ByteProcedure procedure) static <T> TByteIterableIterate.injectInto(ByteIterable iterable, T injectedValue, ObjectByteToObjectFunction<? super T, ? extends T> function) static booleanByteIterableIterate.isEmpty(ByteIterable iterable) static byteByteIterableIterate.max(ByteIterable iterable) static byteByteIterableIterate.maxIfEmpty(ByteIterable iterable, byte ifEmpty) static byteByteIterableIterate.min(ByteIterable iterable) static byteByteIterableIterate.minIfEmpty(ByteIterable iterable, byte ifEmpty) static booleanByteIterableIterate.noneSatisfy(ByteIterable iterable, BytePredicate predicate) static booleanByteIterableIterate.notEmpty(ByteIterable iterable) static <R extends MutableByteCollection>
RByteIterableIterate.reject(ByteIterable iterable, BytePredicate predicate, R targetCollection) static <R extends MutableByteCollection>
RByteIterableIterate.select(ByteIterable iterable, BytePredicate predicate, R targetCollection) private static <T> StringByteIterableIterate.stringValueOfItem(ByteIterable iterable, T item) static longByteIterableIterate.sum(ByteIterable iterable) -
Uses of ByteIterable in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionstatic LazyByteIterableLazyByteIterate.adapt(ByteIterable iterable) Creates a deferred byte iterable for the specified byte iterable.static <V> LazyIterable<V> LazyByteIterate.collect(ByteIterable iterable, ByteToObjectFunction<? extends V> function) Creates a deferred transforming byte iterable for the specified byte iterable.static <V> LazyIterable<V> LazyByteIterate.collectIf(ByteIterable iterable, BytePredicate predicate, ByteToObjectFunction<? extends V> function) Creates a deferred filtering and transforming byte iterable for the specified byte iterable.static <V> LazyIterable<V> LazyByteIterate.flatCollect(ByteIterable iterable, ByteToObjectFunction<? extends Iterable<V>> function) Creates a deferred transforming and flattening byte iterable for the specified byte iterable.static LazyByteIterableLazyByteIterate.select(ByteIterable iterable, BytePredicate predicate) Creates a deferred filtering byte iterable for the specified byte iterable.static LazyByteIterableLazyByteIterate.tap(ByteIterable iterable, ByteProcedure procedure) Creates a deferred tap iterable for the specified iterable.