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 theMutableBiMap
interface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.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 theImmutableStack
interface.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 theMutableStack
interface.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 interface
LazyByteIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return ByteIterable Modifier and Type Method Description ByteIterable
RichIterable. collectByte(ByteFunction<? super T> byteFunction)
Returns a new primitivebyte
iterable with the results of applying the specified function on each element of the source collection.ByteIterable
ByteIterable. reject(BytePredicate predicate)
Returns a new ByteIterable with all of the elements in the ByteIterable that return false for the specified predicate.ByteIterable
ByteIterable. select(BytePredicate predicate)
Returns a new ByteIterable with all of the elements in the ByteIterable that return true for the specified predicate.default ByteIterable
ByteIterable. 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 boolean
ByteIterable. 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 boolean
ByteIterable. 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 boolean
ByteIterable. 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 interface
ByteBag
This file was automatically generated from template file primitiveBag.stg.interface
ImmutableByteBag
This file was automatically generated from template file immutablePrimitiveBag.stg.interface
MutableByteBag
This 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 ImmutableByteBag
ImmutableByteBag. newWithAll(ByteIterable elements)
ImmutableByteBag
ImmutableByteBag. newWithoutAll(ByteIterable elements)
MutableByteBag
MutableByteBag. withAll(ByteIterable elements)
MutableByteBag
MutableByteBag. 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 interface
ImmutableByteCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.interface
MutableByteCollection
This 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 boolean
MutableByteCollection. addAll(ByteIterable source)
ImmutableByteCollection
ImmutableByteCollection. newWithAll(ByteIterable elements)
ImmutableByteCollection
ImmutableByteCollection. newWithoutAll(ByteIterable elements)
boolean
MutableByteCollection. removeAll(ByteIterable source)
boolean
MutableByteCollection. retainAll(ByteIterable elements)
MutableByteCollection
MutableByteCollection. withAll(ByteIterable elements)
MutableByteCollection
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 ByteIterable Modifier and Type Method Description ImmutableByteBag
ImmutableByteBagFactory. ofAll(ByteIterable items)
MutableByteBag
MutableByteBagFactory. ofAll(ByteIterable items)
ImmutableByteBag
ImmutableByteBagFactory. withAll(ByteIterable items)
MutableByteBag
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 ByteIterable Modifier and Type Method Description ImmutableByteList
ImmutableByteListFactory. ofAll(ByteIterable items)
MutableByteList
MutableByteListFactory. ofAll(ByteIterable items)
ImmutableByteList
ImmutableByteListFactory. withAll(ByteIterable items)
MutableByteList
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 ByteIterable Modifier and Type Method Description ImmutableByteSet
ImmutableByteSetFactory. ofAll(ByteIterable items)
MutableByteSet
MutableByteSetFactory. ofAll(ByteIterable items)
ImmutableByteSet
ImmutableByteSetFactory. withAll(ByteIterable items)
MutableByteSet
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 ByteIterable Modifier and Type Method Description ImmutableByteStack
ImmutableByteStackFactory. ofAll(ByteIterable items)
MutableByteStack
MutableByteStackFactory. ofAll(ByteIterable items)
ImmutableByteStack
ImmutableByteStackFactory. ofAllReversed(ByteIterable items)
MutableByteStack
MutableByteStackFactory. ofAllReversed(ByteIterable items)
ImmutableByteStack
ImmutableByteStackFactory. withAll(ByteIterable items)
MutableByteStack
MutableByteStackFactory. withAll(ByteIterable items)
ImmutableByteStack
ImmutableByteStackFactory. withAllReversed(ByteIterable items)
MutableByteStack
MutableByteStackFactory. 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 interface
ByteList
This file was automatically generated from template file primitiveList.stg.interface
ImmutableByteList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
MutableByteList
This 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 boolean
MutableByteList. addAllAtIndex(int index, ByteIterable source)
ImmutableByteList
ImmutableByteList. newWithAll(ByteIterable elements)
ImmutableByteList
ImmutableByteList. newWithoutAll(ByteIterable elements)
MutableByteList
MutableByteList. withAll(ByteIterable elements)
MutableByteList
MutableByteList. withoutAll(ByteIterable elements)
default ListIterable<ByteBytePair>
ByteList. zipByte(ByteIterable iterable)
Returns aListIterable
formed from thisByteList
and anotherByteList
by combining corresponding elements in pairs.default ImmutableList<ByteBytePair>
ImmutableByteList. zipByte(ByteIterable iterable)
Returns anImmutableList
formed from thisImmutableByteList
and anotherByteList
by combining corresponding elements in pairs.default MutableList<ByteBytePair>
MutableByteList. zipByte(ByteIterable iterable)
Returns aMutableList
formed from thisMutableByteList
and anotherByteList
by 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 interface
ByteByteMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
ByteValuesMap
This file was automatically generated from template file primitiveValuesMap.stg.interface
CharByteMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
DoubleByteMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
FloatByteMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
ImmutableByteByteMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableCharByteMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableDoubleByteMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableFloatByteMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableIntByteMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableLongByteMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableObjectByteMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interface
ImmutableShortByteMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
IntByteMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
LongByteMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
MutableByteByteMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableByteValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.interface
MutableCharByteMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableDoubleByteMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableFloatByteMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableIntByteMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableLongByteMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableObjectByteMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interface
MutableShortByteMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
ObjectByteMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.interface
ShortByteMap
This 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 ImmutableByteBooleanMap
ImmutableByteBooleanMap. 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
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
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
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
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
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
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<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.ImmutableByteShortMap
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
MutableByteBooleanMap. withoutAllKeys(ByteIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableByteByteMap
MutableByteByteMap. withoutAllKeys(ByteIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableByteCharMap
MutableByteCharMap. withoutAllKeys(ByteIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableByteDoubleMap
MutableByteDoubleMap. withoutAllKeys(ByteIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableByteFloatMap
MutableByteFloatMap. withoutAllKeys(ByteIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableByteIntMap
MutableByteIntMap. withoutAllKeys(ByteIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableByteLongMap
MutableByteLongMap. 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.MutableByteShortMap
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.primitive Modifier and Type Interface Description interface
OrderedByteIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.interface
ReversibleByteIterable
This 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 interface
ByteSet
This file was automatically generated from template file primitiveSet.stg.interface
ImmutableByteSet
This file was automatically generated from template file immutablePrimitiveSet.stg.interface
MutableByteSet
This 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 ImmutableByteSet
ImmutableByteSet. newWithAll(ByteIterable elements)
ImmutableByteSet
ImmutableByteSet. newWithoutAll(ByteIterable elements)
MutableByteSet
MutableByteSet. withAll(ByteIterable elements)
MutableByteSet
MutableByteSet. 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 interface
ByteStack
This file was automatically generated from template file primitiveStack.stg.interface
ImmutableByteStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableByteStack
This 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 ByteIterable
UnmodifiableRichIterable. 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) class
ImmutableByteEmptyBag
ImmutableByteEmptyBag is an optimization forImmutableByteBag
of size 0.(package private) class
ImmutableByteHashBag
ImmutableByteHashBag is the non-modifiable equivalent ofByteHashBag
.(package private) class
ImmutableByteSingletonBag
ImmutableByteSingletonBag is an optimization forImmutableByteBag
of 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 boolean
ImmutableByteEmptyBag. containsAll(ByteIterable source)
boolean
ImmutableByteHashBag. containsAll(ByteIterable source)
boolean
ImmutableByteSingletonBag. containsAll(ByteIterable source)
ImmutableByteBag
ImmutableByteEmptyBag. newWithAll(ByteIterable elements)
ImmutableByteBag
ImmutableByteHashBag. newWithAll(ByteIterable elements)
ImmutableByteBag
ImmutableByteSingletonBag. newWithAll(ByteIterable elements)
ImmutableByteBag
ImmutableByteEmptyBag. newWithoutAll(ByteIterable elements)
ImmutableByteBag
ImmutableByteHashBag. newWithoutAll(ByteIterable elements)
ImmutableByteBag
ImmutableByteSingletonBag. newWithoutAll(ByteIterable elements)
ImmutableByteBag
ImmutableByteBagFactoryImpl. ofAll(ByteIterable items)
ImmutableByteBag
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 ByteIterable Modifier and Type Class Description class
ByteHashBag
ByteHashBag is similar toHashBag
, and is memory-optimized for byte primitives.class
SynchronizedByteBag
A synchronized view of aMutableByteBag
.class
UnmodifiableByteBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.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 boolean
ByteHashBag. addAll(ByteIterable source)
static ByteHashBag
ByteHashBag. newBag(ByteIterable source)
MutableByteBag
MutableByteBagFactoryImpl. ofAll(ByteIterable items)
boolean
ByteHashBag. removeAll(ByteIterable source)
boolean
ByteHashBag. retainAll(ByteIterable source)
ByteHashBag
ByteHashBag. withAll(ByteIterable iterable)
MutableByteBag
MutableByteBagFactoryImpl. withAll(ByteIterable items)
SynchronizedByteBag
SynchronizedByteBag. withAll(ByteIterable elements)
UnmodifiableByteBag
UnmodifiableByteBag. withAll(ByteIterable elements)
ByteHashBag
ByteHashBag. withoutAll(ByteIterable iterable)
SynchronizedByteBag
SynchronizedByteBag. withoutAll(ByteIterable elements)
UnmodifiableByteBag
UnmodifiableByteBag. 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 ByteIterable
UnmodifiableBiMap. 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 ByteIterable
AbstractSynchronizedRichIterable. 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 class
AbstractSynchronizedByteCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableByteCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedByteCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableByteCollection
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.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 boolean
AbstractSynchronizedByteCollection. addAll(ByteIterable source)
boolean
AbstractUnmodifiableByteCollection. addAll(ByteIterable source)
boolean
AbstractSynchronizedByteCollection. containsAll(ByteIterable source)
boolean
AbstractUnmodifiableByteCollection. containsAll(ByteIterable source)
boolean
AbstractSynchronizedByteCollection. containsAny(ByteIterable source)
boolean
AbstractUnmodifiableByteCollection. containsAny(ByteIterable source)
boolean
AbstractSynchronizedByteCollection. containsNone(ByteIterable source)
boolean
AbstractUnmodifiableByteCollection. containsNone(ByteIterable source)
boolean
AbstractSynchronizedByteCollection. removeAll(ByteIterable source)
boolean
AbstractUnmodifiableByteCollection. removeAll(ByteIterable source)
boolean
AbstractSynchronizedByteCollection. retainAll(ByteIterable source)
boolean
AbstractUnmodifiableByteCollection. retainAll(ByteIterable source)
MutableByteCollection
AbstractSynchronizedByteCollection. withAll(ByteIterable elements)
MutableByteCollection
AbstractUnmodifiableByteCollection. withAll(ByteIterable elements)
MutableByteCollection
AbstractSynchronizedByteCollection. withoutAll(ByteIterable elements)
MutableByteCollection
AbstractUnmodifiableByteCollection. 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 class
AbstractLazyByteIterable
This file was automatically generated from template file abstractLazyPrimitiveIterable.stg.class
CollectBooleanToByteIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectByteIterable<T>
This file was automatically generated from template file collectPrimitiveIterable.stg.class
CollectByteToByteIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectCharToByteIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectDoubleToByteIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectFloatToByteIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectIntToByteIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectLongToByteIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectShortToByteIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
LazyByteIterableAdapter
This file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.class
ReverseByteIterable
This file was automatically generated from template file reversePrimitiveIterable.stg.class
SelectByteIterable
This file was automatically generated from template file selectPrimitiveIterable.stg.class
TapByteIterable
This 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 ByteIterable
ChunkByteIterable. adapted
private ByteIterable
TapByteIterable. adapted
private ByteIterable
LazyByteIterableAdapter. delegate
private ByteIterable
SelectByteIterable. delegate
private ByteIterable
CollectByteToBooleanIterable. iterable
private ByteIterable
CollectByteToByteIterable. iterable
private ByteIterable
CollectByteToCharIterable. iterable
private ByteIterable
CollectByteToDoubleIterable. iterable
private ByteIterable
CollectByteToFloatIterable. iterable
private ByteIterable
CollectByteToIntIterable. iterable
private ByteIterable
CollectByteToLongIterable. iterable
private ByteIterable
CollectByteToObjectIterable. iterable
private ByteIterable
CollectByteToShortIterable. iterable
private ByteIterable
FlatCollectByteToObjectIterable. iterable
Methods in org.eclipse.collections.impl.lazy.primitive that return ByteIterable Modifier and Type Method Description ByteIterable
ChunkByteIterable.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 boolean
AbstractLazyByteIterable. containsAll(ByteIterable source)
boolean
CollectByteIterable. containsAll(ByteIterable source)
boolean
LazyByteIterableAdapter. containsAll(ByteIterable source)
boolean
ReverseByteIterable. containsAll(ByteIterable source)
boolean
SelectByteIterable. containsAll(ByteIterable source)
Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type ByteIterable Modifier and Type Method Description void
ChunkByteIterable. 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) class
ImmutableByteArrayList
ImmutableByteArrayList is the non-modifiable equivalent ofByteArrayList
.(package private) class
ImmutableByteEmptyList
ImmutableByteEmptyList is an optimization forImmutableByteList
of size 0.(package private) class
ImmutableByteSingletonList
ImmutableByteSingletonList is an optimization forImmutableByteList
of 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 boolean
ImmutableByteArrayList. containsAll(ByteIterable source)
boolean
ImmutableByteEmptyList. containsAll(ByteIterable source)
boolean
ImmutableByteSingletonList. containsAll(ByteIterable source)
static ImmutableByteArrayList
ImmutableByteArrayList. newList(ByteIterable iterable)
ImmutableByteList
ImmutableByteArrayList. newWithAll(ByteIterable elements)
ImmutableByteList
ImmutableByteEmptyList. newWithAll(ByteIterable elements)
ImmutableByteList
ImmutableByteSingletonList. newWithAll(ByteIterable elements)
ImmutableByteList
ImmutableByteArrayList. newWithoutAll(ByteIterable elements)
ImmutableByteList
ImmutableByteEmptyList. newWithoutAll(ByteIterable elements)
ImmutableByteList
ImmutableByteSingletonList. newWithoutAll(ByteIterable elements)
ImmutableByteList
ImmutableByteListFactoryImpl. ofAll(ByteIterable items)
ImmutableByteList
ImmutableByteListFactoryImpl. 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 class
ByteArrayList
ByteArrayList is similar to FastList, and is memory-optimized for byte primitives.class
SynchronizedByteList
A synchronized view of aMutableByteList
.class
UnmodifiableByteList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive 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 boolean
ByteArrayList. addAll(ByteIterable source)
boolean
ByteArrayList. addAllAtIndex(int index, ByteIterable source)
boolean
SynchronizedByteList. addAllAtIndex(int index, ByteIterable source)
boolean
UnmodifiableByteList. addAllAtIndex(int index, ByteIterable source)
static ByteArrayList
ByteArrayList. newList(ByteIterable source)
MutableByteList
MutableByteListFactoryImpl. ofAll(ByteIterable items)
boolean
ByteArrayList. removeAll(ByteIterable source)
boolean
ByteArrayList. retainAll(ByteIterable source)
ByteArrayList
ByteArrayList. withAll(ByteIterable elements)
MutableByteList
MutableByteListFactoryImpl. withAll(ByteIterable items)
SynchronizedByteList
SynchronizedByteList. withAll(ByteIterable elements)
UnmodifiableByteList
UnmodifiableByteList. withAll(ByteIterable elements)
ByteArrayList
ByteArrayList. withoutAll(ByteIterable elements)
SynchronizedByteList
SynchronizedByteList. withoutAll(ByteIterable elements)
UnmodifiableByteList
UnmodifiableByteList. 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 class
AbstractImmutableObjectByteMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableByteByteEmptyMap
ImmutableByteByteEmptyMap is an optimization forImmutableByteByteMap
of size 0.(package private) class
ImmutableByteByteHashMap
ImmutableByteByteHashMap is the non-modifiable equivalent ofByteByteHashMap
.(package private) class
ImmutableByteByteSingletonMap
ImmutableByteByteSingletonMap is an optimization forImmutableByteByteMap
of size 1.(package private) class
ImmutableCharByteEmptyMap
ImmutableCharByteEmptyMap is an optimization forImmutableCharByteMap
of size 0.(package private) class
ImmutableCharByteHashMap
ImmutableCharByteHashMap is the non-modifiable equivalent ofCharByteHashMap
.(package private) class
ImmutableCharByteSingletonMap
ImmutableCharByteSingletonMap is an optimization forImmutableCharByteMap
of size 1.(package private) class
ImmutableDoubleByteEmptyMap
ImmutableDoubleByteEmptyMap is an optimization forImmutableDoubleByteMap
of size 0.(package private) class
ImmutableDoubleByteHashMap
ImmutableDoubleByteHashMap is the non-modifiable equivalent ofDoubleByteHashMap
.(package private) class
ImmutableDoubleByteSingletonMap
ImmutableDoubleByteSingletonMap is an optimization forImmutableDoubleByteMap
of size 1.(package private) class
ImmutableFloatByteEmptyMap
ImmutableFloatByteEmptyMap is an optimization forImmutableFloatByteMap
of size 0.(package private) class
ImmutableFloatByteHashMap
ImmutableFloatByteHashMap is the non-modifiable equivalent ofFloatByteHashMap
.(package private) class
ImmutableFloatByteSingletonMap
ImmutableFloatByteSingletonMap is an optimization forImmutableFloatByteMap
of size 1.(package private) class
ImmutableIntByteEmptyMap
ImmutableIntByteEmptyMap is an optimization forImmutableIntByteMap
of size 0.(package private) class
ImmutableIntByteHashMap
ImmutableIntByteHashMap is the non-modifiable equivalent ofIntByteHashMap
.(package private) class
ImmutableIntByteSingletonMap
ImmutableIntByteSingletonMap is an optimization forImmutableIntByteMap
of size 1.(package private) class
ImmutableLongByteEmptyMap
ImmutableLongByteEmptyMap is an optimization forImmutableLongByteMap
of size 0.(package private) class
ImmutableLongByteHashMap
ImmutableLongByteHashMap is the non-modifiable equivalent ofLongByteHashMap
.(package private) class
ImmutableLongByteSingletonMap
ImmutableLongByteSingletonMap is an optimization forImmutableLongByteMap
of size 1.(package private) class
ImmutableObjectByteEmptyMap<K>
ImmutableObjectByteEmptyMap is an optimization forImmutableObjectByteMap
of size 0.(package private) class
ImmutableObjectByteHashMap<K>
ImmutableObjectByteHashMap is the non-modifiable equivalent ofObjectByteHashMap
.(package private) class
ImmutableObjectByteSingletonMap<K>
ImmutableObjectByteSingletonMap is an optimization forImmutableObjectByteMap
of size 1.(package private) class
ImmutableShortByteEmptyMap
ImmutableShortByteEmptyMap is an optimization forImmutableShortByteMap
of size 0.(package private) class
ImmutableShortByteHashMap
ImmutableShortByteHashMap is the non-modifiable equivalent ofShortByteHashMap
.(package private) class
ImmutableShortByteSingletonMap
ImmutableShortByteSingletonMap is an optimization forImmutableShortByteMap
of 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 boolean
ImmutableByteByteEmptyMap. containsAll(ByteIterable source)
boolean
ImmutableByteByteHashMap. containsAll(ByteIterable source)
boolean
ImmutableByteByteSingletonMap. containsAll(ByteIterable source)
boolean
ImmutableCharByteEmptyMap. containsAll(ByteIterable source)
boolean
ImmutableCharByteHashMap. containsAll(ByteIterable source)
boolean
ImmutableCharByteSingletonMap. containsAll(ByteIterable source)
boolean
ImmutableDoubleByteEmptyMap. containsAll(ByteIterable source)
boolean
ImmutableDoubleByteHashMap. containsAll(ByteIterable source)
boolean
ImmutableDoubleByteSingletonMap. containsAll(ByteIterable source)
boolean
ImmutableFloatByteEmptyMap. containsAll(ByteIterable source)
boolean
ImmutableFloatByteHashMap. containsAll(ByteIterable source)
boolean
ImmutableFloatByteSingletonMap. containsAll(ByteIterable source)
boolean
ImmutableIntByteEmptyMap. containsAll(ByteIterable source)
boolean
ImmutableIntByteHashMap. containsAll(ByteIterable source)
boolean
ImmutableIntByteSingletonMap. containsAll(ByteIterable source)
boolean
ImmutableLongByteEmptyMap. containsAll(ByteIterable source)
boolean
ImmutableLongByteHashMap. containsAll(ByteIterable source)
boolean
ImmutableLongByteSingletonMap. containsAll(ByteIterable source)
boolean
ImmutableObjectByteEmptyMap. containsAll(ByteIterable source)
boolean
ImmutableObjectByteHashMap. containsAll(ByteIterable source)
boolean
ImmutableObjectByteSingletonMap. containsAll(ByteIterable source)
boolean
ImmutableShortByteEmptyMap. containsAll(ByteIterable source)
boolean
ImmutableShortByteHashMap. containsAll(ByteIterable source)
boolean
ImmutableShortByteSingletonMap. containsAll(ByteIterable source)
ImmutableByteBooleanMap
ImmutableByteBooleanEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteBooleanMap
ImmutableByteBooleanHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteBooleanMap
ImmutableByteBooleanSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteByteMap
ImmutableByteByteEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteByteMap
ImmutableByteByteHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteByteMap
ImmutableByteByteSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteCharMap
ImmutableByteCharEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteCharMap
ImmutableByteCharHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteCharMap
ImmutableByteCharSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteDoubleMap
ImmutableByteDoubleEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteDoubleMap
ImmutableByteDoubleHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteDoubleMap
ImmutableByteDoubleSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteFloatMap
ImmutableByteFloatEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteFloatMap
ImmutableByteFloatHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteFloatMap
ImmutableByteFloatSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteIntMap
ImmutableByteIntEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteIntMap
ImmutableByteIntHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteIntMap
ImmutableByteIntSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteLongMap
ImmutableByteLongEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteLongMap
ImmutableByteLongHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteLongMap
ImmutableByteLongSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteObjectMap<V>
ImmutableByteObjectEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteObjectMap<V>
ImmutableByteObjectHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteObjectMap<V>
ImmutableByteObjectSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteShortMap
ImmutableByteShortEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteShortMap
ImmutableByteShortHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteShortMap
ImmutableByteShortSingletonMap. 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 class
AbstractMutableByteKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.class
AbstractMutableByteValuesMap
This file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.protected class
AbstractMutableByteValuesMap.AbstractByteValuesCollection
private class
ByteBooleanHashMap.KeySet
private class
ByteBooleanHashMap.KeysView
class
ByteByteHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ByteByteHashMap.KeySet
private class
ByteByteHashMap.KeysView
private class
ByteByteHashMap.ValuesCollection
private class
ByteCharHashMap.KeySet
private class
ByteCharHashMap.KeysView
private class
ByteDoubleHashMap.KeySet
private class
ByteDoubleHashMap.KeysView
private class
ByteFloatHashMap.KeySet
private class
ByteFloatHashMap.KeysView
private class
ByteIntHashMap.KeySet
private class
ByteIntHashMap.KeysView
private class
ByteLongHashMap.KeySet
private class
ByteLongHashMap.KeysView
private class
ByteObjectHashMap.KeySet
private class
ByteObjectHashMap.KeysView
private class
ByteShortHashMap.KeySet
private class
ByteShortHashMap.KeysView
class
CharByteHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
CharByteHashMap.ValuesCollection
class
DoubleByteHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
DoubleByteHashMap.ValuesCollection
class
FloatByteHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
FloatByteHashMap.ValuesCollection
(package private) class
ImmutableByteByteMapKeySet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) class
ImmutableByteMapKeySet
This file was automatically generated from template file immutablePrimitiveMapKeySet.stgclass
IntByteHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
IntByteHashMap.ValuesCollection
class
LongByteHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
LongByteHashMap.ValuesCollection
class
ObjectByteHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.private class
ObjectByteHashMap.ValuesCollection
class
ObjectByteHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private class
ObjectByteHashMapWithHashingStrategy.ValuesCollection
class
ShortByteHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ShortByteHashMap.ValuesCollection
class
SynchronizedByteByteMap
A synchronized view of aMutableByteByteMap
.class
SynchronizedCharByteMap
A synchronized view of aMutableCharByteMap
.class
SynchronizedDoubleByteMap
A synchronized view of aMutableDoubleByteMap
.class
SynchronizedFloatByteMap
A synchronized view of aMutableFloatByteMap
.class
SynchronizedIntByteMap
A synchronized view of aMutableIntByteMap
.class
SynchronizedLongByteMap
A synchronized view of aMutableLongByteMap
.class
SynchronizedObjectByteMap<K>
A synchronized view of aMutableObjectByteMap
.class
SynchronizedShortByteMap
A synchronized view of aMutableShortByteMap
.class
UnmodifiableByteByteMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableCharByteMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableDoubleByteMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableFloatByteMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableIntByteMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableLongByteMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableObjectByteMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.class
UnmodifiableShortByteMap
This 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 boolean
AbstractMutableByteKeySet. addAll(ByteIterable source)
boolean
AbstractMutableByteValuesMap.AbstractByteValuesCollection. addAll(ByteIterable source)
boolean
ObjectByteHashMap.ValuesCollection. addAll(ByteIterable source)
boolean
ObjectByteHashMapWithHashingStrategy.ValuesCollection. addAll(ByteIterable source)
boolean
AbstractMutableByteKeySet. containsAll(ByteIterable source)
boolean
AbstractMutableByteValuesMap.AbstractByteValuesCollection. containsAll(ByteIterable source)
boolean
AbstractMutableByteValuesMap. containsAll(ByteIterable source)
boolean
ByteBooleanHashMap.KeysView. containsAll(ByteIterable source)
boolean
ObjectByteHashMap. containsAll(ByteIterable source)
boolean
ObjectByteHashMap.ValuesCollection. containsAll(ByteIterable source)
boolean
ObjectByteHashMapWithHashingStrategy. containsAll(ByteIterable source)
boolean
ObjectByteHashMapWithHashingStrategy.ValuesCollection. containsAll(ByteIterable source)
boolean
SynchronizedByteByteMap. containsAll(ByteIterable source)
boolean
SynchronizedCharByteMap. containsAll(ByteIterable source)
boolean
SynchronizedDoubleByteMap. containsAll(ByteIterable source)
boolean
SynchronizedFloatByteMap. containsAll(ByteIterable source)
boolean
SynchronizedIntByteMap. containsAll(ByteIterable source)
boolean
SynchronizedLongByteMap. containsAll(ByteIterable source)
boolean
SynchronizedObjectByteMap. containsAll(ByteIterable source)
boolean
SynchronizedShortByteMap. containsAll(ByteIterable source)
boolean
UnmodifiableByteByteMap. containsAll(ByteIterable source)
boolean
UnmodifiableCharByteMap. containsAll(ByteIterable source)
boolean
UnmodifiableDoubleByteMap. containsAll(ByteIterable source)
boolean
UnmodifiableFloatByteMap. containsAll(ByteIterable source)
boolean
UnmodifiableIntByteMap. containsAll(ByteIterable source)
boolean
UnmodifiableLongByteMap. containsAll(ByteIterable source)
boolean
UnmodifiableObjectByteMap. containsAll(ByteIterable source)
boolean
UnmodifiableShortByteMap. containsAll(ByteIterable source)
boolean
AbstractMutableByteKeySet. removeAll(ByteIterable source)
boolean
AbstractMutableByteValuesMap.AbstractByteValuesCollection. removeAll(ByteIterable source)
boolean
ObjectByteHashMap.ValuesCollection. removeAll(ByteIterable source)
boolean
ObjectByteHashMapWithHashingStrategy.ValuesCollection. removeAll(ByteIterable source)
boolean
ByteBooleanHashMap.KeySet. retainAll(ByteIterable source)
boolean
ByteByteHashMap.KeySet. retainAll(ByteIterable source)
boolean
ByteByteHashMap.ValuesCollection. retainAll(ByteIterable source)
boolean
ByteCharHashMap.KeySet. retainAll(ByteIterable source)
boolean
ByteDoubleHashMap.KeySet. retainAll(ByteIterable source)
boolean
ByteFloatHashMap.KeySet. retainAll(ByteIterable source)
boolean
ByteIntHashMap.KeySet. retainAll(ByteIterable source)
boolean
ByteLongHashMap.KeySet. retainAll(ByteIterable source)
boolean
ByteObjectHashMap.KeySet. retainAll(ByteIterable source)
boolean
ByteShortHashMap.KeySet. retainAll(ByteIterable source)
boolean
CharByteHashMap.ValuesCollection. retainAll(ByteIterable source)
boolean
DoubleByteHashMap.ValuesCollection. retainAll(ByteIterable source)
boolean
FloatByteHashMap.ValuesCollection. retainAll(ByteIterable source)
boolean
IntByteHashMap.ValuesCollection. retainAll(ByteIterable source)
boolean
LongByteHashMap.ValuesCollection. retainAll(ByteIterable source)
boolean
ObjectByteHashMap.ValuesCollection. retainAll(ByteIterable source)
boolean
ObjectByteHashMapWithHashingStrategy.ValuesCollection. retainAll(ByteIterable source)
boolean
ShortByteHashMap.ValuesCollection. retainAll(ByteIterable source)
MutableByteSet
AbstractMutableByteKeySet. withAll(ByteIterable elements)
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. withAll(ByteIterable elements)
MutableByteCollection
ObjectByteHashMap.ValuesCollection. withAll(ByteIterable elements)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. withAll(ByteIterable elements)
MutableByteSet
AbstractMutableByteKeySet. withoutAll(ByteIterable elements)
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. withoutAll(ByteIterable elements)
MutableByteCollection
ObjectByteHashMap.ValuesCollection. withoutAll(ByteIterable elements)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. withoutAll(ByteIterable elements)
ByteBooleanHashMap
ByteBooleanHashMap. withoutAllKeys(ByteIterable keys)
ByteByteHashMap
ByteByteHashMap. withoutAllKeys(ByteIterable keys)
ByteCharHashMap
ByteCharHashMap. withoutAllKeys(ByteIterable keys)
ByteDoubleHashMap
ByteDoubleHashMap. withoutAllKeys(ByteIterable keys)
ByteFloatHashMap
ByteFloatHashMap. withoutAllKeys(ByteIterable keys)
ByteIntHashMap
ByteIntHashMap. withoutAllKeys(ByteIterable keys)
ByteLongHashMap
ByteLongHashMap. withoutAllKeys(ByteIterable keys)
MutableByteObjectMap<V>
ByteObjectHashMap. withoutAllKeys(ByteIterable keys)
ByteShortHashMap
ByteShortHashMap. withoutAllKeys(ByteIterable keys)
MutableByteBooleanMap
SynchronizedByteBooleanMap. withoutAllKeys(ByteIterable keys)
MutableByteByteMap
SynchronizedByteByteMap. withoutAllKeys(ByteIterable keys)
MutableByteCharMap
SynchronizedByteCharMap. withoutAllKeys(ByteIterable keys)
MutableByteDoubleMap
SynchronizedByteDoubleMap. withoutAllKeys(ByteIterable keys)
MutableByteFloatMap
SynchronizedByteFloatMap. withoutAllKeys(ByteIterable keys)
MutableByteIntMap
SynchronizedByteIntMap. withoutAllKeys(ByteIterable keys)
MutableByteLongMap
SynchronizedByteLongMap. withoutAllKeys(ByteIterable keys)
MutableByteObjectMap<V>
SynchronizedByteObjectMap. withoutAllKeys(ByteIterable keys)
MutableByteShortMap
SynchronizedByteShortMap. withoutAllKeys(ByteIterable keys)
MutableByteBooleanMap
UnmodifiableByteBooleanMap. withoutAllKeys(ByteIterable keys)
MutableByteByteMap
UnmodifiableByteByteMap. withoutAllKeys(ByteIterable keys)
MutableByteCharMap
UnmodifiableByteCharMap. withoutAllKeys(ByteIterable keys)
MutableByteDoubleMap
UnmodifiableByteDoubleMap. withoutAllKeys(ByteIterable keys)
MutableByteFloatMap
UnmodifiableByteFloatMap. withoutAllKeys(ByteIterable keys)
MutableByteIntMap
UnmodifiableByteIntMap. withoutAllKeys(ByteIterable keys)
MutableByteLongMap
UnmodifiableByteLongMap. withoutAllKeys(ByteIterable keys)
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. withoutAllKeys(ByteIterable keys)
MutableByteShortMap
UnmodifiableByteShortMap. 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 class
AbstractByteIterable
This file was automatically generated from template file abstractPrimitiveIterable.stg.class
SynchronizedByteIterable
A synchronized view of a ByteIterable.Fields in org.eclipse.collections.impl.primitive declared as ByteIterable Modifier and Type Field Description private ByteIterable
SynchronizedByteIterable. iterable
Methods in org.eclipse.collections.impl.primitive that return ByteIterable Modifier and Type Method Description ByteIterable
SynchronizedByteIterable. reject(BytePredicate predicate)
ByteIterable
SynchronizedByteIterable. 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 boolean
SynchronizedByteIterable. containsAll(ByteIterable source)
boolean
SynchronizedByteIterable. containsAny(ByteIterable source)
boolean
SynchronizedByteIterable. containsNone(ByteIterable source)
static SynchronizedByteIterable
SynchronizedByteIterable. of(ByteIterable iterable)
This method will take a ByteIterable and wrap it directly in a SynchronizedByteIterable.static SynchronizedByteIterable
SynchronizedByteIterable. 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 class
AbstractImmutableByteSet
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) class
ImmutableByteEmptySet
ImmutableByteEmptySet is an optimization forImmutableByteSet
of size 0.(package private) class
ImmutableByteSingletonSet
ImmutableByteSingletonSet is an optimization forImmutableByteSet
of 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 boolean
ImmutableByteEmptySet. containsAll(ByteIterable source)
boolean
ImmutableByteSingletonSet. containsAll(ByteIterable source)
ImmutableByteSet
AbstractImmutableByteSet. newWithAll(ByteIterable elements)
ImmutableByteSet
ImmutableByteEmptySet. newWithAll(ByteIterable elements)
ImmutableByteSet
ImmutableByteSingletonSet. newWithAll(ByteIterable elements)
ImmutableByteSet
AbstractImmutableByteSet. newWithoutAll(ByteIterable elements)
ImmutableByteSet
ImmutableByteEmptySet. newWithoutAll(ByteIterable elements)
ImmutableByteSet
ImmutableByteSingletonSet. newWithoutAll(ByteIterable elements)
ImmutableByteSet
ImmutableByteSetFactoryImpl. ofAll(ByteIterable items)
ImmutableByteSet
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 ByteIterable Modifier and Type Class Description class
ByteHashSet
private static class
ByteHashSet.ImmutableByteHashSet
class
SynchronizedByteSet
A synchronized view of aMutableByteSet
.class
UnmodifiableByteSet
This 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 boolean
ByteHashSet. addAll(ByteIterable source)
boolean
ByteHashSet. containsAll(ByteIterable source)
boolean
ByteHashSet.ImmutableByteHashSet. containsAll(ByteIterable source)
static ByteHashSet
ByteHashSet. newSet(ByteIterable source)
ImmutableByteSet
ByteHashSet.ImmutableByteHashSet. newWithAll(ByteIterable elements)
ImmutableByteSet
ByteHashSet.ImmutableByteHashSet. newWithoutAll(ByteIterable elements)
MutableByteSet
MutableByteSetFactoryImpl. ofAll(ByteIterable items)
boolean
ByteHashSet. removeAll(ByteIterable source)
boolean
ByteHashSet. retainAll(ByteIterable source)
ByteHashSet
ByteHashSet. withAll(ByteIterable elements)
MutableByteSet
MutableByteSetFactoryImpl. withAll(ByteIterable items)
SynchronizedByteSet
SynchronizedByteSet. withAll(ByteIterable elements)
UnmodifiableByteSet
UnmodifiableByteSet. withAll(ByteIterable elements)
ByteHashSet
ByteHashSet. withoutAll(ByteIterable elements)
SynchronizedByteSet
SynchronizedByteSet. withoutAll(ByteIterable elements)
UnmodifiableByteSet
UnmodifiableByteSet. 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 class
AbstractByteSet
This 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) class
ImmutableByteArrayStack
ImmutableByteArrayStack is the non-modifiable equivalent ofByteArrayStack
.(package private) class
ImmutableByteEmptyStack
ImmutableByteEmptyStack is an optimization forImmutableByteStack
of size 0.(package private) class
ImmutableByteSingletonStack
ImmutableByteSingletonStack is an optimization forImmutableByteStack
of 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 boolean
ImmutableByteEmptyStack. containsAll(ByteIterable source)
boolean
ImmutableByteSingletonStack. containsAll(ByteIterable source)
static ImmutableByteArrayStack
ImmutableByteArrayStack. newStack(ByteIterable iterable)
static ImmutableByteArrayStack
ImmutableByteArrayStack. newStackFromTopToBottom(ByteIterable items)
ImmutableByteStack
ImmutableByteStackFactoryImpl. ofAll(ByteIterable items)
ImmutableByteStack
ImmutableByteStackFactoryImpl. ofAllReversed(ByteIterable items)
ImmutableByteStack
ImmutableByteStackFactoryImpl. withAll(ByteIterable items)
ImmutableByteStack
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 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 class
ByteArrayStack
ByteArrayStack is similar toArrayStack
, and is memory-optimized for byte primitives.class
SynchronizedByteStack
A synchronized view of aMutableByteStack
.class
UnmodifiableByteStack
This 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 boolean
SynchronizedByteStack. containsAll(ByteIterable source)
boolean
UnmodifiableByteStack. containsAll(ByteIterable source)
static ByteArrayStack
ByteArrayStack. newStack(ByteIterable items)
static ByteArrayStack
ByteArrayStack. newStackFromTopToBottom(ByteIterable items)
MutableByteStack
MutableByteStackFactoryImpl. ofAll(ByteIterable items)
MutableByteStack
MutableByteStackFactoryImpl. ofAllReversed(ByteIterable items)
MutableByteStack
MutableByteStackFactoryImpl. withAll(ByteIterable items)
MutableByteStack
MutableByteStackFactoryImpl. 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 class
AbstractByteStack
This 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 boolean
AbstractByteStack. 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 boolean
ByteIterableIterate. allSatisfy(ByteIterable iterable, BytePredicate predicate)
static boolean
ByteIterableIterate. anySatisfy(ByteIterable iterable, BytePredicate predicate)
static void
ByteIterableIterate. 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 int
ByteIterableIterate. count(ByteIterable iterable, BytePredicate predicate)
static byte
ByteIterableIterate. detectIfNone(ByteIterable iterable, BytePredicate predicate, byte ifNone)
static void
ByteIterableIterate. forEach(ByteIterable iterable, ByteProcedure procedure)
static <T> T
ByteIterableIterate. injectInto(ByteIterable iterable, T injectedValue, ObjectByteToObjectFunction<? super T,? extends T> function)
static boolean
ByteIterableIterate. isEmpty(ByteIterable iterable)
static byte
ByteIterableIterate. max(ByteIterable iterable)
static byte
ByteIterableIterate. maxIfEmpty(ByteIterable iterable, byte ifEmpty)
static byte
ByteIterableIterate. min(ByteIterable iterable)
static byte
ByteIterableIterate. minIfEmpty(ByteIterable iterable, byte ifEmpty)
static boolean
ByteIterableIterate. noneSatisfy(ByteIterable iterable, BytePredicate predicate)
static boolean
ByteIterableIterate. 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.String
ByteIterableIterate. stringValueOfItem(ByteIterable iterable, T item)
static long
ByteIterableIterate. 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 LazyByteIterable
LazyByteIterate. 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 LazyByteIterable
LazyByteIterate. select(ByteIterable iterable, BytePredicate predicate)
Creates a deferred filtering byte iterable for the specified byte iterable.static LazyByteIterable
LazyByteIterate. tap(ByteIterable iterable, ByteProcedure procedure)
Creates a deferred tap iterable for the specified iterable.
-