Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableByteList
Packages that use ImmutableByteList
Package
Description
This package contains interfaces for SortedBag API.
This package contains factory API for creating immutable primitive list instances.
This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains mutable and immutable primitive list API.
This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
This package contains implementations of the
ImmutableList
interface.This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of
ImmutableSortedSet
.-
Uses of ImmutableByteList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableByteListModifier and TypeMethodDescriptionImmutableSortedBag.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ImmutableByteList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return ImmutableByteListModifier and TypeMethodDescriptionImmutableByteListFactory.empty()
ImmutableByteListFactory.of()
Same asImmutableByteListFactory.empty()
.ImmutableByteListFactory.of
(byte one) Same asImmutableByteListFactory.with(byte)
.ImmutableByteListFactory.of
(byte... items) ImmutableByteListFactory.ofAll
(ByteIterable items) ImmutableByteListFactory.with()
Same asImmutableByteListFactory.empty()
.ImmutableByteListFactory.with
(byte one) ImmutableByteListFactory.with
(byte... items) ImmutableByteListFactory.withAll
(ByteIterable items) -
Uses of ImmutableByteList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableByteListModifier and TypeMethodDescriptionImmutableList.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ImmutableByteList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ImmutableByteListModifier and TypeMethodDescriptionImmutableByteList.distinct()
ImmutableByteList.newWith
(byte element) ImmutableByteList.newWithAll
(ByteIterable elements) ImmutableByteList.newWithout
(byte element) ImmutableByteList.newWithoutAll
(ByteIterable elements) ImmutableByteList.reject
(BytePredicate predicate) default ImmutableByteList
ImmutableByteList.rejectWithIndex
(ByteIntPredicate predicate) Returns a new ImmutableByteList excluding all elements with corresponding indexes matching the specified predicate.ImmutableByteList.select
(BytePredicate predicate) default ImmutableByteList
ImmutableByteList.selectWithIndex
(ByteIntPredicate predicate) Returns a new ImmutableByteList including all elements with corresponding indexes matching the specified predicate.ImmutableByteList.subList
(int fromIndex, int toIndex) default ImmutableByteList
ImmutableByteList.tap
(ByteProcedure procedure) ByteList.toImmutable()
Returns an immutable copy of this list.MutableByteList.toImmutable()
Returns an immutable copy of this list.ImmutableByteList.toReversed()
-
Uses of ImmutableByteList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableByteListModifier and TypeMethodDescriptionImmutableOrderedMap.collectByte
(ByteFunction<? super V> byteFunction) -
Uses of ImmutableByteList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableByteListModifier and TypeMethodDescriptionImmutableSortedMap.collectByte
(ByteFunction<? super V> byteFunction) -
Uses of ImmutableByteList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableByteListModifier and TypeMethodDescriptionImmutableSortedSet.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ImmutableByteList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableByteListModifier and TypeMethodDescriptionAbstractImmutableSortedBag.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ImmutableByteList in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return ImmutableByteListModifier and TypeMethodDescriptionAbstractImmutableList.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ImmutableByteList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ImmutableByteListModifier and TypeClassDescription(package private) final class
ImmutableByteArrayList is the non-modifiable equivalent ofByteArrayList
.(package private) final class
ImmutableByteEmptyList is an optimization forImmutableByteList
of size 0.(package private) final class
ImmutableByteSingletonList is an optimization forImmutableByteList
of size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableByteListModifier and TypeFieldDescription(package private) static final ImmutableByteList
ImmutableByteEmptyList.INSTANCE
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableByteListModifier and TypeMethodDescriptionImmutableByteArrayList.distinct()
ImmutableByteEmptyList.distinct()
ImmutableByteSingletonList.distinct()
ImmutableByteListFactoryImpl.empty()
ImmutableByteArrayList.newWith
(byte element) ImmutableByteEmptyList.newWith
(byte element) ImmutableByteSingletonList.newWith
(byte element) ImmutableByteArrayList.newWithAll
(ByteIterable elements) ImmutableByteEmptyList.newWithAll
(ByteIterable elements) ImmutableByteSingletonList.newWithAll
(ByteIterable elements) ImmutableByteArrayList.newWithout
(byte element) ImmutableByteEmptyList.newWithout
(byte element) ImmutableByteSingletonList.newWithout
(byte element) ImmutableByteArrayList.newWithoutAll
(ByteIterable elements) ImmutableByteEmptyList.newWithoutAll
(ByteIterable elements) ImmutableByteSingletonList.newWithoutAll
(ByteIterable elements) ImmutableByteListFactoryImpl.of()
ImmutableByteListFactoryImpl.of
(byte one) ImmutableByteListFactoryImpl.of
(byte... items) ImmutableByteListFactoryImpl.ofAll
(ByteIterable items) ImmutableByteArrayList.reject
(BytePredicate predicate) ImmutableByteEmptyList.reject
(BytePredicate predicate) ImmutableByteSingletonList.reject
(BytePredicate predicate) ImmutableByteArrayList.select
(BytePredicate predicate) ImmutableByteEmptyList.select
(BytePredicate predicate) ImmutableByteSingletonList.select
(BytePredicate predicate) ImmutableByteArrayList.subList
(int fromIndex, int toIndex) ImmutableByteEmptyList.subList
(int fromIndex, int toIndex) ImmutableByteSingletonList.subList
(int fromIndex, int toIndex) ImmutableByteArrayList.toImmutable()
ImmutableByteEmptyList.toImmutable()
ImmutableByteSingletonList.toImmutable()
ImmutableByteListFactoryImpl.with()
ImmutableByteListFactoryImpl.with
(byte one) ImmutableByteListFactoryImpl.with
(byte... items) ImmutableByteListFactoryImpl.withAll
(ByteIterable items) -
Uses of ImmutableByteList in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return ImmutableByteListModifier and TypeMethodDescriptionByteArrayList.toImmutable()
SynchronizedByteList.toImmutable()
UnmodifiableByteList.toImmutable()
-
Uses of ImmutableByteList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableByteListModifier and TypeMethodDescriptionAbstractImmutableSortedMap.collectByte
(ByteFunction<? super V> byteFunction) -
Uses of ImmutableByteList in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableByteListModifier and TypeMethodDescriptionAbstractImmutableSortedSet.collectByte
(ByteFunction<? super T> byteFunction)