Uses of Interface
org.eclipse.collections.api.ByteIterable
-
Packages that use ByteIterable 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.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.factory.bag.primitive org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.org.eclipse.collections.api.factory.stack.primitive This package contains factory API for creating primitive stack instances.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.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.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 theMutableMapinterface.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 theMutableSortedMapinterface.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.set.primitive org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of ByteIterable in org.eclipse.collections.api
Subinterfaces of ByteIterable in org.eclipse.collections.api Modifier and Type Interface Description interfaceLazyByteIterableThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return ByteIterable Modifier and Type Method Description ByteIterableRichIterable. collectByte(ByteFunction<? super T> byteFunction)Returns a new primitivebyteiterable with the results of applying the specified function on each element of the source collection.ByteIterableByteIterable. reject(BytePredicate predicate)Returns a new ByteIterable with all of the elements in the ByteIterable that return false for the specified predicate.ByteIterableByteIterable. 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 ByteIterable Modifier and Type Method Description default RichIterable<ByteIterable>ByteIterable. chunk(int size)Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type ByteIterable Modifier and Type Method Description default 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 ByteIterable Modifier and Type Method Description 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. -
Uses of ByteIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interfaceByteBagThis file was automatically generated from template file primitiveBag.stg.interfaceImmutableByteBagThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceMutableByteBagThis file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type ByteIterable Modifier and Type Method Description ImmutableByteBagImmutableByteBag. newWithAll(ByteIterable elements)ImmutableByteBagImmutableByteBag. newWithoutAll(ByteIterable elements)MutableByteBagMutableByteBag. withAll(ByteIterable elements)MutableByteBagMutableByteBag. withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.collection.primitive Modifier and Type Interface Description interfaceImmutableByteCollectionThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceMutableByteCollectionThis file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanMutableByteCollection. addAll(ByteIterable source)ImmutableByteCollectionImmutableByteCollection. newWithAll(ByteIterable elements)ImmutableByteCollectionImmutableByteCollection. newWithoutAll(ByteIterable elements)booleanMutableByteCollection. removeAll(ByteIterable source)booleanMutableByteCollection. retainAll(ByteIterable elements)MutableByteCollectionMutableByteCollection. withAll(ByteIterable elements)MutableByteCollectionMutableByteCollection. 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 ByteIterable Modifier and Type Method Description ImmutableByteBagImmutableByteBagFactory. ofAll(ByteIterable items)MutableByteBagMutableByteBagFactory. ofAll(ByteIterable items)ImmutableByteBagImmutableByteBagFactory. withAll(ByteIterable items)MutableByteBagMutableByteBagFactory. 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 ByteIterable Modifier and Type Method Description ImmutableByteListImmutableByteListFactory. ofAll(ByteIterable items)MutableByteListMutableByteListFactory. ofAll(ByteIterable items)ImmutableByteListImmutableByteListFactory. withAll(ByteIterable items)MutableByteListMutableByteListFactory. 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 ByteIterable Modifier and Type Method Description ImmutableByteSetImmutableByteSetFactory. ofAll(ByteIterable items)MutableByteSetMutableByteSetFactory. ofAll(ByteIterable items)ImmutableByteSetImmutableByteSetFactory. withAll(ByteIterable items)MutableByteSetMutableByteSetFactory. 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 ByteIterable Modifier and Type Method Description ImmutableByteStackImmutableByteStackFactory. ofAll(ByteIterable items)MutableByteStackMutableByteStackFactory. ofAll(ByteIterable items)ImmutableByteStackImmutableByteStackFactory. ofAllReversed(ByteIterable items)MutableByteStackMutableByteStackFactory. ofAllReversed(ByteIterable items)ImmutableByteStackImmutableByteStackFactory. withAll(ByteIterable items)MutableByteStackMutableByteStackFactory. withAll(ByteIterable items)ImmutableByteStackImmutableByteStackFactory. withAllReversed(ByteIterable items)MutableByteStackMutableByteStackFactory. withAllReversed(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interfaceByteListThis file was automatically generated from template file primitiveList.stg.interfaceImmutableByteListThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceMutableByteListThis file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanMutableByteList. addAllAtIndex(int index, ByteIterable source)ImmutableByteListImmutableByteList. newWithAll(ByteIterable elements)ImmutableByteListImmutableByteList. newWithoutAll(ByteIterable elements)MutableByteListMutableByteList. withAll(ByteIterable elements)MutableByteListMutableByteList. 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.primitive Modifier and Type Interface Description interfaceByteByteMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceByteValuesMapThis file was automatically generated from template file primitiveValuesMap.stg.interfaceCharByteMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceDoubleByteMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceFloatByteMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceImmutableByteByteMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableCharByteMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableDoubleByteMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableFloatByteMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableIntByteMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableLongByteMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableObjectByteMap<K>This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceImmutableShortByteMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceIntByteMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceLongByteMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceMutableByteByteMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableByteValuesMapThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceMutableCharByteMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableDoubleByteMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableFloatByteMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableIntByteMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableLongByteMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableObjectByteMap<K>This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceMutableShortByteMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceObjectByteMap<K>This file was automatically generated from template file objectPrimitiveMap.stg.interfaceShortByteMapThis file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteIterable Modifier and Type Method Description ImmutableByteBooleanMapImmutableByteBooleanMap. 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.ImmutableByteByteMapImmutableByteByteMap. 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.ImmutableByteCharMapImmutableByteCharMap. 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.ImmutableByteDoubleMapImmutableByteDoubleMap. 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.ImmutableByteFloatMapImmutableByteFloatMap. 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.ImmutableByteIntMapImmutableByteIntMap. 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.ImmutableByteLongMapImmutableByteLongMap. 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<V>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.ImmutableByteShortMapImmutableByteShortMap. 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.MutableByteBooleanMapMutableByteBooleanMap. withoutAllKeys(ByteIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableByteByteMapMutableByteByteMap. withoutAllKeys(ByteIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableByteCharMapMutableByteCharMap. withoutAllKeys(ByteIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableByteDoubleMapMutableByteDoubleMap. withoutAllKeys(ByteIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableByteFloatMapMutableByteFloatMap. withoutAllKeys(ByteIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableByteIntMapMutableByteIntMap. withoutAllKeys(ByteIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableByteLongMapMutableByteLongMap. withoutAllKeys(ByteIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableByteObjectMap<V>MutableByteObjectMap. withoutAllKeys(ByteIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableByteShortMapMutableByteShortMap. 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.primitive Modifier and Type Interface Description interfaceOrderedByteIterableThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceReversibleByteIterableThis 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.primitive Modifier and Type Interface Description interfaceByteSetThis file was automatically generated from template file primitiveSet.stg.interfaceImmutableByteSetThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceMutableByteSetThis file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type ByteIterable Modifier and Type Method Description ImmutableByteSetImmutableByteSet. newWithAll(ByteIterable elements)ImmutableByteSetImmutableByteSet. newWithoutAll(ByteIterable elements)MutableByteSetMutableByteSet. withAll(ByteIterable elements)MutableByteSetMutableByteSet. withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interfaceByteStackThis file was automatically generated from template file primitiveStack.stg.interfaceImmutableByteStackThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceMutableByteStackThis 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 ByteIterable Modifier and Type Method Description ByteIterableUnmodifiableRichIterable. collectByte(ByteFunction<? super T> byteFunction)Method parameters in org.eclipse.collections.impl with type arguments of type ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Class Description (package private) classImmutableByteEmptyBagImmutableByteEmptyBag is an optimization forImmutableByteBagof size 0.(package private) classImmutableByteHashBagImmutableByteHashBag is the non-modifiable equivalent ofByteHashBag.(package private) classImmutableByteSingletonBagImmutableByteSingletonBag is an optimization forImmutableByteBagof size 1.Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>ImmutableByteEmptyBag. chunk(int size)RichIterable<ByteIterable>ImmutableByteHashBag. chunk(int size)RichIterable<ByteIterable>ImmutableByteSingletonBag. chunk(int size)Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanImmutableByteEmptyBag. containsAll(ByteIterable source)booleanImmutableByteHashBag. containsAll(ByteIterable source)booleanImmutableByteSingletonBag. containsAll(ByteIterable source)ImmutableByteBagImmutableByteEmptyBag. newWithAll(ByteIterable elements)ImmutableByteBagImmutableByteHashBag. newWithAll(ByteIterable elements)ImmutableByteBagImmutableByteSingletonBag. newWithAll(ByteIterable elements)ImmutableByteBagImmutableByteEmptyBag. newWithoutAll(ByteIterable elements)ImmutableByteBagImmutableByteHashBag. newWithoutAll(ByteIterable elements)ImmutableByteBagImmutableByteSingletonBag. newWithoutAll(ByteIterable elements)ImmutableByteBagImmutableByteBagFactoryImpl. ofAll(ByteIterable items)ImmutableByteBagImmutableByteBagFactoryImpl. 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 ByteIterable Modifier and Type Class Description classByteHashBagByteHashBag is similar toHashBag, and is memory-optimized for byte primitives.classSynchronizedByteBagA synchronized view of aMutableByteBag.classUnmodifiableByteBagThis 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 ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>ByteHashBag. chunk(int size)Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanByteHashBag. addAll(ByteIterable source)static ByteHashBagByteHashBag. newBag(ByteIterable source)MutableByteBagMutableByteBagFactoryImpl. ofAll(ByteIterable items)booleanByteHashBag. removeAll(ByteIterable source)booleanByteHashBag. retainAll(ByteIterable source)ByteHashBagByteHashBag. withAll(ByteIterable iterable)MutableByteBagMutableByteBagFactoryImpl. withAll(ByteIterable items)SynchronizedByteBagSynchronizedByteBag. withAll(ByteIterable elements)UnmodifiableByteBagUnmodifiableByteBag. withAll(ByteIterable elements)ByteHashBagByteHashBag. withoutAll(ByteIterable iterable)SynchronizedByteBagSynchronizedByteBag. withoutAll(ByteIterable elements)UnmodifiableByteBagUnmodifiableByteBag. withoutAll(ByteIterable elements)Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type ByteIterable Constructor Description ByteHashBag(ByteIterable iterable) -
Uses of ByteIterable in org.eclipse.collections.impl.bimap
Method parameters in org.eclipse.collections.impl.bimap with type arguments of type ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Method Description ByteIterableUnmodifiableBiMap. collectByte(ByteFunction<? super V> byteFunction)Method parameters in org.eclipse.collections.impl.bimap.mutable with type arguments of type ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Method Description ByteIterableAbstractSynchronizedRichIterable. collectByte(ByteFunction<? super T> byteFunction)Method parameters in org.eclipse.collections.impl.collection with type arguments of type ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Method Description <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) -
Uses of ByteIterable in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement ByteIterable Modifier and Type Class Description classAbstractSynchronizedByteCollectionThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classAbstractUnmodifiableByteCollectionThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classSynchronizedByteCollectionThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classUnmodifiableByteCollectionThis 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 ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>AbstractSynchronizedByteCollection. chunk(int size)RichIterable<ByteIterable>AbstractUnmodifiableByteCollection. chunk(int size)Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanAbstractSynchronizedByteCollection. 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)MutableByteCollectionAbstractSynchronizedByteCollection. withAll(ByteIterable elements)MutableByteCollectionAbstractUnmodifiableByteCollection. withAll(ByteIterable elements)MutableByteCollectionAbstractSynchronizedByteCollection. withoutAll(ByteIterable elements)MutableByteCollectionAbstractUnmodifiableByteCollection. withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement ByteIterable Modifier and Type Class Description classAbstractLazyByteIterableThis file was automatically generated from template file abstractLazyPrimitiveIterable.stg.classCollectBooleanToByteIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectByteIterable<T>This file was automatically generated from template file collectPrimitiveIterable.stg.classCollectByteToByteIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectCharToByteIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectDoubleToByteIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectFloatToByteIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectIntToByteIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectLongToByteIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectShortToByteIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classLazyByteIterableAdapterThis file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.classReverseByteIterableThis file was automatically generated from template file reversePrimitiveIterable.stg.classSelectByteIterableThis file was automatically generated from template file selectPrimitiveIterable.stg.classTapByteIterableThis file was automatically generated from template file tapPrimitiveIterable.stg.Fields in org.eclipse.collections.impl.lazy.primitive declared as ByteIterable Modifier and Type Field Description private ByteIterableChunkByteIterable. adaptedprivate ByteIterableTapByteIterable. adaptedprivate ByteIterableLazyByteIterableAdapter. delegateprivate ByteIterableSelectByteIterable. delegateprivate ByteIterableCollectByteToBooleanIterable. iterableprivate ByteIterableCollectByteToByteIterable. iterableprivate ByteIterableCollectByteToCharIterable. iterableprivate ByteIterableCollectByteToDoubleIterable. iterableprivate ByteIterableCollectByteToFloatIterable. iterableprivate ByteIterableCollectByteToIntIterable. iterableprivate ByteIterableCollectByteToLongIterable. iterableprivate ByteIterableCollectByteToObjectIterable. iterableprivate ByteIterableCollectByteToShortIterable. iterableprivate ByteIterableFlatCollectByteToObjectIterable. iterableMethods in org.eclipse.collections.impl.lazy.primitive that return ByteIterable Modifier and Type Method Description ByteIterableChunkByteIterable.ChunkByteIterator. next()Methods in org.eclipse.collections.impl.lazy.primitive that return types with arguments of type ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>AbstractLazyByteIterable. chunk(int size)java.util.Iterator<ByteIterable>ChunkByteIterable. iterator()Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanAbstractLazyByteIterable. 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 ByteIterable Modifier and Type Method Description voidChunkByteIterable. each(Procedure<? super ByteIterable> procedure) -
Uses of ByteIterable in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ByteIterable Modifier and Type Class Description (package private) classImmutableByteArrayListImmutableByteArrayList is the non-modifiable equivalent ofByteArrayList.(package private) classImmutableByteEmptyListImmutableByteEmptyList is an optimization forImmutableByteListof size 0.(package private) classImmutableByteSingletonListImmutableByteSingletonList is an optimization forImmutableByteListof size 1.Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>ImmutableByteArrayList. chunk(int size)RichIterable<ByteIterable>ImmutableByteEmptyList. chunk(int size)RichIterable<ByteIterable>ImmutableByteSingletonList. chunk(int size)Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanImmutableByteArrayList. containsAll(ByteIterable source)booleanImmutableByteEmptyList. containsAll(ByteIterable source)booleanImmutableByteSingletonList. containsAll(ByteIterable source)static ImmutableByteArrayListImmutableByteArrayList. newList(ByteIterable iterable)ImmutableByteListImmutableByteArrayList. newWithAll(ByteIterable elements)ImmutableByteListImmutableByteEmptyList. newWithAll(ByteIterable elements)ImmutableByteListImmutableByteSingletonList. newWithAll(ByteIterable elements)ImmutableByteListImmutableByteArrayList. newWithoutAll(ByteIterable elements)ImmutableByteListImmutableByteEmptyList. newWithoutAll(ByteIterable elements)ImmutableByteListImmutableByteSingletonList. newWithoutAll(ByteIterable elements)ImmutableByteListImmutableByteListFactoryImpl. ofAll(ByteIterable items)ImmutableByteListImmutableByteListFactoryImpl. withAll(ByteIterable items)ImmutableList<ByteBytePair>ImmutableByteArrayList. zipByte(ByteIterable iterable)ImmutableList<ByteBytePair>ImmutableByteEmptyList. zipByte(ByteIterable iterable)ImmutableList<ByteBytePair>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 ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Class Description classByteArrayListByteArrayList is similar to FastList, and is memory-optimized for byte primitives.classSynchronizedByteListA synchronized view of aMutableByteList.classUnmodifiableByteListThis 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 ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>ByteArrayList. chunk(int size)Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanByteArrayList. 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)MutableByteListMutableByteListFactoryImpl. ofAll(ByteIterable items)booleanByteArrayList. removeAll(ByteIterable source)booleanByteArrayList. retainAll(ByteIterable source)ByteArrayListByteArrayList. withAll(ByteIterable elements)MutableByteListMutableByteListFactoryImpl. withAll(ByteIterable items)SynchronizedByteListSynchronizedByteList. withAll(ByteIterable elements)UnmodifiableByteListUnmodifiableByteList. withAll(ByteIterable elements)ByteArrayListByteArrayList. withoutAll(ByteIterable elements)SynchronizedByteListSynchronizedByteList. withoutAll(ByteIterable elements)UnmodifiableByteListUnmodifiableByteList. withoutAll(ByteIterable elements)MutableList<ByteBytePair>ByteArrayList. zipByte(ByteIterable iterable)MutableList<ByteBytePair>SynchronizedByteList. zipByte(ByteIterable iterable)MutableList<ByteBytePair>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 ByteIterable Modifier and Type Class Description classAbstractImmutableObjectByteMap<V>This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) classImmutableByteByteEmptyMapImmutableByteByteEmptyMap is an optimization forImmutableByteByteMapof size 0.(package private) classImmutableByteByteHashMapImmutableByteByteHashMap is the non-modifiable equivalent ofByteByteHashMap.(package private) classImmutableByteByteSingletonMapImmutableByteByteSingletonMap is an optimization forImmutableByteByteMapof size 1.(package private) classImmutableCharByteEmptyMapImmutableCharByteEmptyMap is an optimization forImmutableCharByteMapof size 0.(package private) classImmutableCharByteHashMapImmutableCharByteHashMap is the non-modifiable equivalent ofCharByteHashMap.(package private) classImmutableCharByteSingletonMapImmutableCharByteSingletonMap is an optimization forImmutableCharByteMapof size 1.(package private) classImmutableDoubleByteEmptyMapImmutableDoubleByteEmptyMap is an optimization forImmutableDoubleByteMapof size 0.(package private) classImmutableDoubleByteHashMapImmutableDoubleByteHashMap is the non-modifiable equivalent ofDoubleByteHashMap.(package private) classImmutableDoubleByteSingletonMapImmutableDoubleByteSingletonMap is an optimization forImmutableDoubleByteMapof size 1.(package private) classImmutableFloatByteEmptyMapImmutableFloatByteEmptyMap is an optimization forImmutableFloatByteMapof size 0.(package private) classImmutableFloatByteHashMapImmutableFloatByteHashMap is the non-modifiable equivalent ofFloatByteHashMap.(package private) classImmutableFloatByteSingletonMapImmutableFloatByteSingletonMap is an optimization forImmutableFloatByteMapof size 1.(package private) classImmutableIntByteEmptyMapImmutableIntByteEmptyMap is an optimization forImmutableIntByteMapof size 0.(package private) classImmutableIntByteHashMapImmutableIntByteHashMap is the non-modifiable equivalent ofIntByteHashMap.(package private) classImmutableIntByteSingletonMapImmutableIntByteSingletonMap is an optimization forImmutableIntByteMapof size 1.(package private) classImmutableLongByteEmptyMapImmutableLongByteEmptyMap is an optimization forImmutableLongByteMapof size 0.(package private) classImmutableLongByteHashMapImmutableLongByteHashMap is the non-modifiable equivalent ofLongByteHashMap.(package private) classImmutableLongByteSingletonMapImmutableLongByteSingletonMap is an optimization forImmutableLongByteMapof size 1.(package private) classImmutableObjectByteEmptyMap<K>ImmutableObjectByteEmptyMap is an optimization forImmutableObjectByteMapof size 0.(package private) classImmutableObjectByteHashMap<K>ImmutableObjectByteHashMap is the non-modifiable equivalent ofObjectByteHashMap.(package private) classImmutableObjectByteSingletonMap<K>ImmutableObjectByteSingletonMap is an optimization forImmutableObjectByteMapof size 1.(package private) classImmutableShortByteEmptyMapImmutableShortByteEmptyMap is an optimization forImmutableShortByteMapof size 0.(package private) classImmutableShortByteHashMapImmutableShortByteHashMap is the non-modifiable equivalent ofShortByteHashMap.(package private) classImmutableShortByteSingletonMapImmutableShortByteSingletonMap is an optimization forImmutableShortByteMapof size 1.Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>ImmutableByteByteEmptyMap. chunk(int size)RichIterable<ByteIterable>ImmutableByteByteHashMap. chunk(int size)RichIterable<ByteIterable>ImmutableByteByteSingletonMap. chunk(int size)RichIterable<ByteIterable>ImmutableCharByteEmptyMap. chunk(int size)RichIterable<ByteIterable>ImmutableCharByteHashMap. chunk(int size)RichIterable<ByteIterable>ImmutableCharByteSingletonMap. chunk(int size)RichIterable<ByteIterable>ImmutableDoubleByteEmptyMap. chunk(int size)RichIterable<ByteIterable>ImmutableDoubleByteHashMap. chunk(int size)RichIterable<ByteIterable>ImmutableDoubleByteSingletonMap. chunk(int size)RichIterable<ByteIterable>ImmutableFloatByteEmptyMap. chunk(int size)RichIterable<ByteIterable>ImmutableFloatByteHashMap. chunk(int size)RichIterable<ByteIterable>ImmutableFloatByteSingletonMap. chunk(int size)RichIterable<ByteIterable>ImmutableIntByteEmptyMap. chunk(int size)RichIterable<ByteIterable>ImmutableIntByteHashMap. chunk(int size)RichIterable<ByteIterable>ImmutableIntByteSingletonMap. chunk(int size)RichIterable<ByteIterable>ImmutableLongByteEmptyMap. chunk(int size)RichIterable<ByteIterable>ImmutableLongByteHashMap. chunk(int size)RichIterable<ByteIterable>ImmutableLongByteSingletonMap. chunk(int size)RichIterable<ByteIterable>ImmutableObjectByteEmptyMap. chunk(int size)RichIterable<ByteIterable>ImmutableObjectByteHashMap. chunk(int size)RichIterable<ByteIterable>ImmutableObjectByteSingletonMap. chunk(int size)RichIterable<ByteIterable>ImmutableShortByteEmptyMap. chunk(int size)RichIterable<ByteIterable>ImmutableShortByteHashMap. chunk(int size)RichIterable<ByteIterable>ImmutableShortByteSingletonMap. chunk(int size)Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanImmutableByteByteEmptyMap. 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)ImmutableByteBooleanMapImmutableByteBooleanEmptyMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteBooleanMapImmutableByteBooleanHashMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteBooleanMapImmutableByteBooleanSingletonMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteByteMapImmutableByteByteEmptyMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteByteMapImmutableByteByteHashMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteByteMapImmutableByteByteSingletonMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteCharMapImmutableByteCharEmptyMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteCharMapImmutableByteCharHashMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteCharMapImmutableByteCharSingletonMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteDoubleMapImmutableByteDoubleEmptyMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteDoubleMapImmutableByteDoubleHashMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteDoubleMapImmutableByteDoubleSingletonMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteFloatMapImmutableByteFloatEmptyMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteFloatMapImmutableByteFloatHashMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteFloatMapImmutableByteFloatSingletonMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteIntMapImmutableByteIntEmptyMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteIntMapImmutableByteIntHashMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteIntMapImmutableByteIntSingletonMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteLongMapImmutableByteLongEmptyMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteLongMapImmutableByteLongHashMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteLongMapImmutableByteLongSingletonMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteObjectMap<V>ImmutableByteObjectEmptyMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteObjectMap<V>ImmutableByteObjectHashMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteObjectMap<V>ImmutableByteObjectSingletonMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteShortMapImmutableByteShortEmptyMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteShortMapImmutableByteShortHashMap. newWithoutAllKeys(ByteIterable keys)ImmutableByteShortMapImmutableByteShortSingletonMap. newWithoutAllKeys(ByteIterable keys)Method parameters in org.eclipse.collections.impl.map.immutable.primitive with type arguments of type ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Class Description classAbstractMutableByteKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.classAbstractMutableByteValuesMapThis file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.protected classAbstractMutableByteValuesMap.AbstractByteValuesCollectionprivate classByteBooleanHashMap.KeySetprivate classByteBooleanHashMap.KeysViewclassByteByteHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classByteByteHashMap.KeySetprivate classByteByteHashMap.KeysViewprivate classByteByteHashMap.ValuesCollectionprivate classByteCharHashMap.KeySetprivate classByteCharHashMap.KeysViewprivate classByteDoubleHashMap.KeySetprivate classByteDoubleHashMap.KeysViewprivate classByteFloatHashMap.KeySetprivate classByteFloatHashMap.KeysViewprivate classByteIntHashMap.KeySetprivate classByteIntHashMap.KeysViewprivate classByteLongHashMap.KeySetprivate classByteLongHashMap.KeysViewprivate classByteObjectHashMap.KeySetprivate classByteObjectHashMap.KeysViewprivate classByteShortHashMap.KeySetprivate classByteShortHashMap.KeysViewclassCharByteHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classCharByteHashMap.ValuesCollectionclassDoubleByteHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classDoubleByteHashMap.ValuesCollectionclassFloatByteHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classFloatByteHashMap.ValuesCollection(package private) classImmutableByteByteMapKeySetThis file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) classImmutableByteMapKeySetThis file was automatically generated from template file immutablePrimitiveMapKeySet.stgclassIntByteHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classIntByteHashMap.ValuesCollectionclassLongByteHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classLongByteHashMap.ValuesCollectionclassObjectByteHashMap<K>This file was automatically generated from template file objectPrimitiveHashMap.stg.private classObjectByteHashMap.ValuesCollectionclassObjectByteHashMapWithHashingStrategy<K>This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private classObjectByteHashMapWithHashingStrategy.ValuesCollectionclassShortByteHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classShortByteHashMap.ValuesCollectionclassSynchronizedByteByteMapA synchronized view of aMutableByteByteMap.classSynchronizedCharByteMapA synchronized view of aMutableCharByteMap.classSynchronizedDoubleByteMapA synchronized view of aMutableDoubleByteMap.classSynchronizedFloatByteMapA synchronized view of aMutableFloatByteMap.classSynchronizedIntByteMapA synchronized view of aMutableIntByteMap.classSynchronizedLongByteMapA synchronized view of aMutableLongByteMap.classSynchronizedObjectByteMap<K>A synchronized view of aMutableObjectByteMap.classSynchronizedShortByteMapA synchronized view of aMutableShortByteMap.classUnmodifiableByteByteMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableCharByteMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableDoubleByteMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableFloatByteMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableIntByteMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableLongByteMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableObjectByteMap<K>This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.classUnmodifiableShortByteMapThis 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 ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>AbstractMutableByteKeySet. chunk(int size)RichIterable<ByteIterable>AbstractMutableByteValuesMap.AbstractByteValuesCollection. chunk(int size)RichIterable<ByteIterable>AbstractMutableByteValuesMap. chunk(int size)RichIterable<ByteIterable>ObjectByteHashMap. chunk(int size)RichIterable<ByteIterable>ObjectByteHashMap.ValuesCollection. chunk(int size)RichIterable<ByteIterable>ObjectByteHashMapWithHashingStrategy. chunk(int size)RichIterable<ByteIterable>ObjectByteHashMapWithHashingStrategy.ValuesCollection. chunk(int size)RichIterable<ByteIterable>SynchronizedByteByteMap. chunk(int size)RichIterable<ByteIterable>SynchronizedCharByteMap. chunk(int size)RichIterable<ByteIterable>SynchronizedDoubleByteMap. chunk(int size)RichIterable<ByteIterable>SynchronizedFloatByteMap. chunk(int size)RichIterable<ByteIterable>SynchronizedIntByteMap. chunk(int size)RichIterable<ByteIterable>SynchronizedLongByteMap. chunk(int size)RichIterable<ByteIterable>SynchronizedObjectByteMap. chunk(int size)RichIterable<ByteIterable>SynchronizedShortByteMap. chunk(int size)RichIterable<ByteIterable>UnmodifiableByteByteMap. chunk(int size)RichIterable<ByteIterable>UnmodifiableCharByteMap. chunk(int size)RichIterable<ByteIterable>UnmodifiableDoubleByteMap. chunk(int size)RichIterable<ByteIterable>UnmodifiableFloatByteMap. chunk(int size)RichIterable<ByteIterable>UnmodifiableIntByteMap. chunk(int size)RichIterable<ByteIterable>UnmodifiableLongByteMap. chunk(int size)RichIterable<ByteIterable>UnmodifiableObjectByteMap. chunk(int size)RichIterable<ByteIterable>UnmodifiableShortByteMap. chunk(int size)Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanAbstractMutableByteKeySet. 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)MutableByteSetAbstractMutableByteKeySet. withAll(ByteIterable elements)MutableByteCollectionAbstractMutableByteValuesMap.AbstractByteValuesCollection. withAll(ByteIterable elements)MutableByteCollectionObjectByteHashMap.ValuesCollection. withAll(ByteIterable elements)MutableByteCollectionObjectByteHashMapWithHashingStrategy.ValuesCollection. withAll(ByteIterable elements)MutableByteSetAbstractMutableByteKeySet. withoutAll(ByteIterable elements)MutableByteCollectionAbstractMutableByteValuesMap.AbstractByteValuesCollection. withoutAll(ByteIterable elements)MutableByteCollectionObjectByteHashMap.ValuesCollection. withoutAll(ByteIterable elements)MutableByteCollectionObjectByteHashMapWithHashingStrategy.ValuesCollection. withoutAll(ByteIterable elements)ByteBooleanHashMapByteBooleanHashMap. withoutAllKeys(ByteIterable keys)ByteByteHashMapByteByteHashMap. withoutAllKeys(ByteIterable keys)ByteCharHashMapByteCharHashMap. withoutAllKeys(ByteIterable keys)ByteDoubleHashMapByteDoubleHashMap. withoutAllKeys(ByteIterable keys)ByteFloatHashMapByteFloatHashMap. withoutAllKeys(ByteIterable keys)ByteIntHashMapByteIntHashMap. withoutAllKeys(ByteIterable keys)ByteLongHashMapByteLongHashMap. withoutAllKeys(ByteIterable keys)MutableByteObjectMap<V>ByteObjectHashMap. withoutAllKeys(ByteIterable keys)ByteShortHashMapByteShortHashMap. withoutAllKeys(ByteIterable keys)MutableByteBooleanMapSynchronizedByteBooleanMap. withoutAllKeys(ByteIterable keys)MutableByteByteMapSynchronizedByteByteMap. withoutAllKeys(ByteIterable keys)MutableByteCharMapSynchronizedByteCharMap. withoutAllKeys(ByteIterable keys)MutableByteDoubleMapSynchronizedByteDoubleMap. withoutAllKeys(ByteIterable keys)MutableByteFloatMapSynchronizedByteFloatMap. withoutAllKeys(ByteIterable keys)MutableByteIntMapSynchronizedByteIntMap. withoutAllKeys(ByteIterable keys)MutableByteLongMapSynchronizedByteLongMap. withoutAllKeys(ByteIterable keys)MutableByteObjectMap<V>SynchronizedByteObjectMap. withoutAllKeys(ByteIterable keys)MutableByteShortMapSynchronizedByteShortMap. withoutAllKeys(ByteIterable keys)MutableByteBooleanMapUnmodifiableByteBooleanMap. withoutAllKeys(ByteIterable keys)MutableByteByteMapUnmodifiableByteByteMap. withoutAllKeys(ByteIterable keys)MutableByteCharMapUnmodifiableByteCharMap. withoutAllKeys(ByteIterable keys)MutableByteDoubleMapUnmodifiableByteDoubleMap. withoutAllKeys(ByteIterable keys)MutableByteFloatMapUnmodifiableByteFloatMap. withoutAllKeys(ByteIterable keys)MutableByteIntMapUnmodifiableByteIntMap. withoutAllKeys(ByteIterable keys)MutableByteLongMapUnmodifiableByteLongMap. withoutAllKeys(ByteIterable keys)MutableByteObjectMap<V>UnmodifiableByteObjectMap. withoutAllKeys(ByteIterable keys)MutableByteShortMapUnmodifiableByteShortMap. withoutAllKeys(ByteIterable keys)Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Class Description classAbstractByteIterableThis file was automatically generated from template file abstractPrimitiveIterable.stg.classSynchronizedByteIterableA synchronized view of a ByteIterable.Fields in org.eclipse.collections.impl.primitive declared as ByteIterable Modifier and Type Field Description private ByteIterableSynchronizedByteIterable. iterableMethods in org.eclipse.collections.impl.primitive that return ByteIterable Modifier and Type Method Description ByteIterableSynchronizedByteIterable. reject(BytePredicate predicate)ByteIterableSynchronizedByteIterable. select(BytePredicate predicate)Methods in org.eclipse.collections.impl.primitive that return types with arguments of type ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>SynchronizedByteIterable. chunk(int size)Methods in org.eclipse.collections.impl.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanSynchronizedByteIterable. 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, java.lang.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 ByteIterable Constructor Description SynchronizedByteIterable(ByteIterable iterable)SynchronizedByteIterable(ByteIterable iterable, java.lang.Object newLock) -
Uses of ByteIterable in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement ByteIterable Modifier and Type Class Description classAbstractImmutableByteSetThis file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) classImmutableByteEmptySetImmutableByteEmptySet is an optimization forImmutableByteSetof size 0.(package private) classImmutableByteSingletonSetImmutableByteSingletonSet is an optimization forImmutableByteSetof size 1.Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>AbstractImmutableByteSet. chunk(int size)RichIterable<ByteIterable>ImmutableByteEmptySet. chunk(int size)RichIterable<ByteIterable>ImmutableByteSingletonSet. chunk(int size)Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanImmutableByteEmptySet. containsAll(ByteIterable source)booleanImmutableByteSingletonSet. containsAll(ByteIterable source)ImmutableByteSetAbstractImmutableByteSet. newWithAll(ByteIterable elements)ImmutableByteSetImmutableByteEmptySet. newWithAll(ByteIterable elements)ImmutableByteSetImmutableByteSingletonSet. newWithAll(ByteIterable elements)ImmutableByteSetAbstractImmutableByteSet. newWithoutAll(ByteIterable elements)ImmutableByteSetImmutableByteEmptySet. newWithoutAll(ByteIterable elements)ImmutableByteSetImmutableByteSingletonSet. newWithoutAll(ByteIterable elements)ImmutableByteSetImmutableByteSetFactoryImpl. ofAll(ByteIterable items)ImmutableByteSetImmutableByteSetFactoryImpl. 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 ByteIterable Modifier and Type Class Description classByteHashSetprivate static classByteHashSet.ImmutableByteHashSetclassSynchronizedByteSetA synchronized view of aMutableByteSet.classUnmodifiableByteSetThis 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 ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>ByteHashSet. chunk(int size)RichIterable<ByteIterable>ByteHashSet.ImmutableByteHashSet. chunk(int size)Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanByteHashSet. addAll(ByteIterable source)booleanByteHashSet. containsAll(ByteIterable source)booleanByteHashSet.ImmutableByteHashSet. containsAll(ByteIterable source)static ByteHashSetByteHashSet. newSet(ByteIterable source)ImmutableByteSetByteHashSet.ImmutableByteHashSet. newWithAll(ByteIterable elements)ImmutableByteSetByteHashSet.ImmutableByteHashSet. newWithoutAll(ByteIterable elements)MutableByteSetMutableByteSetFactoryImpl. ofAll(ByteIterable items)booleanByteHashSet. removeAll(ByteIterable source)booleanByteHashSet. retainAll(ByteIterable source)ByteHashSetByteHashSet. withAll(ByteIterable elements)MutableByteSetMutableByteSetFactoryImpl. withAll(ByteIterable items)SynchronizedByteSetSynchronizedByteSet. withAll(ByteIterable elements)UnmodifiableByteSetUnmodifiableByteSet. withAll(ByteIterable elements)ByteHashSetByteHashSet. withoutAll(ByteIterable elements)SynchronizedByteSetSynchronizedByteSet. withoutAll(ByteIterable elements)UnmodifiableByteSetUnmodifiableByteSet. withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement ByteIterable Modifier and Type Class Description classAbstractByteSetThis 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 ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Class Description (package private) classImmutableByteArrayStackImmutableByteArrayStack is the non-modifiable equivalent ofByteArrayStack.(package private) classImmutableByteEmptyStackImmutableByteEmptyStack is an optimization forImmutableByteStackof size 0.(package private) classImmutableByteSingletonStackImmutableByteSingletonStack is an optimization forImmutableByteStackof size 1.Methods in org.eclipse.collections.impl.stack.immutable.primitive that return types with arguments of type ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>ImmutableByteEmptyStack. chunk(int size)RichIterable<ByteIterable>ImmutableByteSingletonStack. chunk(int size)Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanImmutableByteEmptyStack. containsAll(ByteIterable source)booleanImmutableByteSingletonStack. containsAll(ByteIterable source)static ImmutableByteArrayStackImmutableByteArrayStack. newStack(ByteIterable iterable)static ImmutableByteArrayStackImmutableByteArrayStack. newStackFromTopToBottom(ByteIterable items)ImmutableByteStackImmutableByteStackFactoryImpl. ofAll(ByteIterable items)ImmutableByteStackImmutableByteStackFactoryImpl. ofAllReversed(ByteIterable items)ImmutableByteStackImmutableByteStackFactoryImpl. withAll(ByteIterable items)ImmutableByteStackImmutableByteStackFactoryImpl. 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 ByteIterable Modifier and Type Method Description <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 ByteIterable Modifier and Type Class Description classByteArrayStackByteArrayStack is similar toArrayStack, and is memory-optimized for byte primitives.classSynchronizedByteStackA synchronized view of aMutableByteStack.classUnmodifiableByteStackThis 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 ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>SynchronizedByteStack. chunk(int size)RichIterable<ByteIterable>UnmodifiableByteStack. chunk(int size)Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanSynchronizedByteStack. containsAll(ByteIterable source)booleanUnmodifiableByteStack. containsAll(ByteIterable source)static ByteArrayStackByteArrayStack. newStack(ByteIterable items)static ByteArrayStackByteArrayStack. newStackFromTopToBottom(ByteIterable items)MutableByteStackMutableByteStackFactoryImpl. ofAll(ByteIterable items)MutableByteStackMutableByteStackFactoryImpl. ofAllReversed(ByteIterable items)MutableByteStackMutableByteStackFactoryImpl. withAll(ByteIterable items)MutableByteStackMutableByteStackFactoryImpl. withAllReversed(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement ByteIterable Modifier and Type Class Description classAbstractByteStackThis file was automatically generated from template file abstractPrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.primitive that return types with arguments of type ByteIterable Modifier and Type Method Description RichIterable<ByteIterable>AbstractByteStack. chunk(int size)Methods in org.eclipse.collections.impl.stack.primitive with parameters of type ByteIterable Modifier and Type Method Description booleanAbstractByteStack. containsAll(ByteIterable source) -
Uses of ByteIterable in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type ByteIterable Modifier and Type Method Description static booleanByteIterableIterate. allSatisfy(ByteIterable iterable, BytePredicate predicate)static booleanByteIterableIterate. anySatisfy(ByteIterable iterable, BytePredicate predicate)static voidByteIterableIterate. appendString(ByteIterable iterable, java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)static <V,R extends java.util.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> java.lang.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 ByteIterable Modifier and Type Method Description static 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 java.lang.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.
-