Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableByteList
-
Packages that use ImmutableByteList Package Description org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.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.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
. -
-
Uses of ImmutableByteList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableByteList Modifier and Type Method Description ImmutableByteList
ImmutableSortedBag. 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 ImmutableByteList Modifier and Type Method Description ImmutableByteList
ImmutableByteListFactory. empty()
ImmutableByteList
ImmutableByteListFactory. of()
Same asImmutableByteListFactory.empty()
.ImmutableByteList
ImmutableByteListFactory. of(byte one)
Same asImmutableByteListFactory.with(byte)
.ImmutableByteList
ImmutableByteListFactory. of(byte... items)
ImmutableByteList
ImmutableByteListFactory. ofAll(java.lang.Iterable<java.lang.Byte> iterable)
ImmutableByteList
ImmutableByteListFactory. ofAll(ByteIterable items)
ImmutableByteList
ImmutableByteListFactory. with()
Same asImmutableByteListFactory.empty()
.ImmutableByteList
ImmutableByteListFactory. with(byte one)
ImmutableByteList
ImmutableByteListFactory. with(byte... items)
ImmutableByteList
ImmutableByteListFactory. withAll(java.lang.Iterable<java.lang.Byte> iterable)
ImmutableByteList
ImmutableByteListFactory. withAll(ByteIterable items)
-
Uses of ImmutableByteList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableByteList Modifier and Type Method Description ImmutableByteList
ImmutableList. 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 ImmutableByteList Modifier and Type Method Description ImmutableByteList
ImmutableByteList. distinct()
ImmutableByteList
ImmutableByteList. newWith(byte element)
ImmutableByteList
ImmutableByteList. newWithAll(ByteIterable elements)
ImmutableByteList
ImmutableByteList. newWithout(byte element)
ImmutableByteList
ImmutableByteList. newWithoutAll(ByteIterable elements)
ImmutableByteList
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
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
ImmutableByteList. subList(int fromIndex, int toIndex)
default ImmutableByteList
ImmutableByteList. tap(ByteProcedure procedure)
ImmutableByteList
ByteList. toImmutable()
Returns an immutable copy of this list.ImmutableByteList
MutableByteList. toImmutable()
Returns an immutable copy of this list.ImmutableByteList
ImmutableByteList. toReversed()
-
Uses of ImmutableByteList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableByteList Modifier and Type Method Description ImmutableByteList
ImmutableOrderedMap. 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 ImmutableByteList Modifier and Type Method Description ImmutableByteList
ImmutableSortedMap. 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 ImmutableByteList Modifier and Type Method Description ImmutableByteList
ImmutableSortedSet. 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 ImmutableByteList Modifier and Type Method Description ImmutableByteList
AbstractImmutableSortedBag. 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 ImmutableByteList Modifier and Type Method Description ImmutableByteList
AbstractImmutableList. 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 ImmutableByteList 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.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableByteList Modifier and Type Field Description (package private) static ImmutableByteList
ImmutableByteEmptyList. INSTANCE
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableByteList Modifier and Type Method Description ImmutableByteList
ImmutableByteArrayList. distinct()
ImmutableByteList
ImmutableByteEmptyList. distinct()
ImmutableByteList
ImmutableByteSingletonList. distinct()
ImmutableByteList
ImmutableByteListFactoryImpl. empty()
ImmutableByteList
ImmutableByteArrayList. newWith(byte element)
ImmutableByteList
ImmutableByteEmptyList. newWith(byte element)
ImmutableByteList
ImmutableByteSingletonList. newWith(byte element)
ImmutableByteList
ImmutableByteArrayList. newWithAll(ByteIterable elements)
ImmutableByteList
ImmutableByteEmptyList. newWithAll(ByteIterable elements)
ImmutableByteList
ImmutableByteSingletonList. newWithAll(ByteIterable elements)
ImmutableByteList
ImmutableByteArrayList. newWithout(byte element)
ImmutableByteList
ImmutableByteEmptyList. newWithout(byte element)
ImmutableByteList
ImmutableByteSingletonList. newWithout(byte element)
ImmutableByteList
ImmutableByteArrayList. newWithoutAll(ByteIterable elements)
ImmutableByteList
ImmutableByteEmptyList. newWithoutAll(ByteIterable elements)
ImmutableByteList
ImmutableByteSingletonList. newWithoutAll(ByteIterable elements)
ImmutableByteList
ImmutableByteListFactoryImpl. of()
ImmutableByteList
ImmutableByteListFactoryImpl. of(byte one)
ImmutableByteList
ImmutableByteListFactoryImpl. of(byte... items)
ImmutableByteList
ImmutableByteListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Byte> iterable)
ImmutableByteList
ImmutableByteListFactoryImpl. ofAll(ByteIterable items)
ImmutableByteList
ImmutableByteArrayList. reject(BytePredicate predicate)
ImmutableByteList
ImmutableByteEmptyList. reject(BytePredicate predicate)
ImmutableByteList
ImmutableByteSingletonList. reject(BytePredicate predicate)
ImmutableByteList
ImmutableByteArrayList. select(BytePredicate predicate)
ImmutableByteList
ImmutableByteEmptyList. select(BytePredicate predicate)
ImmutableByteList
ImmutableByteSingletonList. select(BytePredicate predicate)
ImmutableByteList
ImmutableByteArrayList. subList(int fromIndex, int toIndex)
ImmutableByteList
ImmutableByteEmptyList. subList(int fromIndex, int toIndex)
ImmutableByteList
ImmutableByteSingletonList. subList(int fromIndex, int toIndex)
ImmutableByteList
ImmutableByteArrayList. toImmutable()
ImmutableByteList
ImmutableByteEmptyList. toImmutable()
ImmutableByteList
ImmutableByteSingletonList. toImmutable()
ImmutableByteList
ImmutableByteListFactoryImpl. with()
ImmutableByteList
ImmutableByteListFactoryImpl. with(byte one)
ImmutableByteList
ImmutableByteListFactoryImpl. with(byte... items)
ImmutableByteList
ImmutableByteListFactoryImpl. withAll(java.lang.Iterable<java.lang.Byte> iterable)
ImmutableByteList
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 ImmutableByteList Modifier and Type Method Description ImmutableByteList
ByteArrayList. toImmutable()
ImmutableByteList
SynchronizedByteList. toImmutable()
ImmutableByteList
UnmodifiableByteList. toImmutable()
-
Uses of ImmutableByteList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableByteList Modifier and Type Method Description ImmutableByteList
AbstractImmutableSortedMap. 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 ImmutableByteList Modifier and Type Method Description ImmutableByteList
AbstractImmutableSortedSet. collectByte(ByteFunction<? super T> byteFunction)
-