Uses of Interface
org.eclipse.collections.api.list.primitive.MutableByteList
-
Packages that use MutableByteList Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.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.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.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.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.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.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 This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of MutableByteList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableByteList Modifier and Type Method Description MutableByteList
ByteIterable. toList()
Converts the ByteIterable to a new MutableByteList.MutableByteList
ByteIterable. toSortedList()
default MutableByteList
ByteIterable. toSortedList(ByteComparator comparator)
Converts the collection to a MutableByteList implementation sorted using the provided comparator.default <T> MutableByteList
ByteIterable. toSortedListBy(ByteToObjectFunction<T> function)
Converts the collection to a MutableByteListImplementation sorted based on the natural order of the key returned byfunction
.default <T> MutableByteList
ByteIterable. toSortedListBy(ByteToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Converts the collection to a MutableByteList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
. -
Uses of MutableByteList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableByteList Modifier and Type Method Description MutableByteList
MutableSortedBag. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
MutableByteListFactory. empty()
MutableByteList
MutableByteListFactory. of()
Same asMutableByteListFactory.empty()
.MutableByteList
MutableByteListFactory. of(byte... items)
Same asMutableByteListFactory.with(byte[])
.MutableByteList
MutableByteListFactory. ofAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteList
MutableByteListFactory. ofAll(ByteIterable items)
MutableByteList
MutableByteListFactory. with()
Same asMutableByteListFactory.empty()
.MutableByteList
MutableByteListFactory. with(byte... items)
Creates a new list using the passeditems
argument as the backing store.MutableByteList
MutableByteListFactory. withAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteList
MutableByteListFactory. withAll(ByteIterable items)
default MutableByteList
MutableByteListFactory. withInitialCapacity(int capacity)
Same asMutableByteListFactory.empty()
.default MutableByteList
MutableByteListFactory. wrapCopy(byte... array)
Creates a new list by first copying the array passed in. -
Uses of MutableByteList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableByteList Modifier and Type Method Description default MutableByteList
MutableList. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
MutableByteList. asSynchronized()
MutableByteList
MutableByteList. asUnmodifiable()
MutableByteList
MutableByteList. distinct()
default MutableByteList
MutableByteList. newEmpty()
Creates a new empty mutable version of the same List type.MutableByteList
MutableByteList. reject(BytePredicate predicate)
default MutableByteList
MutableByteList. rejectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.MutableByteList
MutableByteList. reverseThis()
MutableByteList
MutableByteList. select(BytePredicate predicate)
default MutableByteList
MutableByteList. selectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.default MutableByteList
MutableByteList. shuffleThis()
Randomly permutes this list mutating its contents and returns the same list (this).default MutableByteList
MutableByteList. shuffleThis(java.util.Random rnd)
Randomly permutes this list mutating its contents and returns the same list (this).MutableByteList
MutableByteList. sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).default MutableByteList
MutableByteList. sortThis(ByteComparator comparator)
Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableByteList
MutableByteList. sortThisBy(ByteToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned byfunction
.default <T> MutableByteList
MutableByteList. sortThisBy(ByteToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
.MutableByteList
MutableByteList. subList(int fromIndex, int toIndex)
default MutableByteList
MutableByteList. tap(ByteProcedure procedure)
MutableByteList
MutableByteList. toReversed()
MutableByteList
MutableByteList. with(byte element)
MutableByteList
MutableByteList. withAll(ByteIterable elements)
MutableByteList
MutableByteList. without(byte element)
MutableByteList
MutableByteList. withoutAll(ByteIterable elements)
-
Uses of MutableByteList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableByteList Modifier and Type Method Description MutableByteList
MutableOrderedMap. collectByte(ByteFunction<? super V> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableByteList Modifier and Type Method Description MutableByteList
MutableSortedMap. collectByte(ByteFunction<? super V> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableByteList Modifier and Type Method Description MutableByteList
MutableSortedSet. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
ImmutableByteEmptyBag. toList()
MutableByteList
ImmutableByteHashBag. toList()
MutableByteList
ImmutableByteSingletonBag. toList()
MutableByteList
ImmutableByteEmptyBag. toSortedList()
MutableByteList
ImmutableByteHashBag. toSortedList()
MutableByteList
ImmutableByteSingletonBag. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableByteList Modifier and Type Method Description MutableByteList
AbstractMutableSortedBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
SynchronizedSortedBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
UnmodifiableSortedBag. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
AbstractSynchronizedByteCollection. toList()
MutableByteList
AbstractUnmodifiableByteCollection. toList()
MutableByteList
AbstractSynchronizedByteCollection. toSortedList()
MutableByteList
AbstractUnmodifiableByteCollection. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
AbstractLazyByteIterable. toList()
MutableByteList
CollectByteIterable. toList()
MutableByteList
LazyByteIterableAdapter. toList()
MutableByteList
ReverseByteIterable. toList()
MutableByteList
SelectByteIterable. toList()
MutableByteList
AbstractLazyByteIterable. toSortedList()
MutableByteList
LazyByteIterableAdapter. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
ImmutableByteArrayList. toList()
MutableByteList
ImmutableByteEmptyList. toList()
MutableByteList
ImmutableByteSingletonList. toList()
MutableByteList
ImmutableByteArrayList. toSortedList()
MutableByteList
ImmutableByteEmptyList. toSortedList()
MutableByteList
ImmutableByteSingletonList. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableByteList Modifier and Type Method Description MutableByteList
MultiReaderFastList. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
MultiReaderFastList.UntouchableMutableList. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
SynchronizedMutableList. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
UnmodifiableMutableList. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableByteList 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 MutableByteList Modifier and Type Method Description MutableByteList
ByteArrayList. asSynchronized()
MutableByteList
SynchronizedByteList. asSynchronized()
MutableByteList
UnmodifiableByteList. asSynchronized()
MutableByteList
ByteArrayList. asUnmodifiable()
MutableByteList
SynchronizedByteList. asUnmodifiable()
MutableByteList
UnmodifiableByteList. asUnmodifiable()
MutableByteList
ByteArrayList. distinct()
MutableByteList
SynchronizedByteList. distinct()
MutableByteList
UnmodifiableByteList. distinct()
MutableByteList
MutableByteListFactoryImpl. empty()
private MutableByteList
SynchronizedByteList. getMutableByteList()
private MutableByteList
UnmodifiableByteList. getMutableByteList()
MutableByteList
SynchronizedByteList. newEmpty()
MutableByteList
UnmodifiableByteList. newEmpty()
MutableByteList
MutableByteListFactoryImpl. of()
MutableByteList
MutableByteListFactoryImpl. of(byte... items)
MutableByteList
MutableByteListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteList
MutableByteListFactoryImpl. ofAll(ByteIterable items)
MutableByteList
SynchronizedByteList. reject(BytePredicate predicate)
MutableByteList
UnmodifiableByteList. reject(BytePredicate predicate)
MutableByteList
SynchronizedByteList. rejectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.MutableByteList
UnmodifiableByteList. rejectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.MutableByteList
SynchronizedByteList. reverseThis()
MutableByteList
UnmodifiableByteList. reverseThis()
MutableByteList
SynchronizedByteList. select(BytePredicate predicate)
MutableByteList
UnmodifiableByteList. select(BytePredicate predicate)
MutableByteList
SynchronizedByteList. selectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.MutableByteList
UnmodifiableByteList. selectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.MutableByteList
SynchronizedByteList. shuffleThis()
MutableByteList
SynchronizedByteList. shuffleThis(java.util.Random rnd)
MutableByteList
UnmodifiableByteList. shuffleThis()
MutableByteList
SynchronizedByteList. sortThis()
MutableByteList
SynchronizedByteList. sortThis(ByteComparator comparator)
MutableByteList
UnmodifiableByteList. sortThis()
<T> MutableByteList
SynchronizedByteList. sortThisBy(ByteToObjectFunction<T> function)
<T> MutableByteList
SynchronizedByteList. sortThisBy(ByteToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
MutableByteList
ByteArrayList. subList(int fromIndex, int toIndex)
MutableByteList
SynchronizedByteList. subList(int fromIndex, int toIndex)
MutableByteList
UnmodifiableByteList. subList(int fromIndex, int toIndex)
MutableByteList
SynchronizedByteList. toReversed()
MutableByteList
UnmodifiableByteList. toReversed()
MutableByteList
MutableByteListFactoryImpl. with()
MutableByteList
MutableByteListFactoryImpl. with(byte... items)
Creates a new list using the passeditems
argument as the backing store.MutableByteList
MutableByteListFactoryImpl. withAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteList
MutableByteListFactoryImpl. withAll(ByteIterable items)
MutableByteList
MutableByteListFactoryImpl. withInitialCapacity(int capacity)
Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableByteList Constructor Description SynchronizedByteList(MutableByteList list)
SynchronizedByteList(MutableByteList list, java.lang.Object newLock)
UnmodifiableByteList(MutableByteList list)
-
Uses of MutableByteList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
ImmutableByteByteEmptyMap. toList()
MutableByteList
ImmutableByteByteHashMap. toList()
MutableByteList
ImmutableByteByteSingletonMap. toList()
MutableByteList
ImmutableCharByteEmptyMap. toList()
MutableByteList
ImmutableCharByteHashMap. toList()
MutableByteList
ImmutableCharByteSingletonMap. toList()
MutableByteList
ImmutableDoubleByteEmptyMap. toList()
MutableByteList
ImmutableDoubleByteHashMap. toList()
MutableByteList
ImmutableDoubleByteSingletonMap. toList()
MutableByteList
ImmutableFloatByteEmptyMap. toList()
MutableByteList
ImmutableFloatByteHashMap. toList()
MutableByteList
ImmutableFloatByteSingletonMap. toList()
MutableByteList
ImmutableIntByteEmptyMap. toList()
MutableByteList
ImmutableIntByteHashMap. toList()
MutableByteList
ImmutableIntByteSingletonMap. toList()
MutableByteList
ImmutableLongByteEmptyMap. toList()
MutableByteList
ImmutableLongByteHashMap. toList()
MutableByteList
ImmutableLongByteSingletonMap. toList()
MutableByteList
ImmutableObjectByteEmptyMap. toList()
MutableByteList
ImmutableObjectByteHashMap. toList()
MutableByteList
ImmutableObjectByteSingletonMap. toList()
MutableByteList
ImmutableShortByteEmptyMap. toList()
MutableByteList
ImmutableShortByteHashMap. toList()
MutableByteList
ImmutableShortByteSingletonMap. toList()
MutableByteList
ImmutableByteByteEmptyMap. toSortedList()
MutableByteList
ImmutableByteByteHashMap. toSortedList()
MutableByteList
ImmutableByteByteSingletonMap. toSortedList()
MutableByteList
ImmutableCharByteEmptyMap. toSortedList()
MutableByteList
ImmutableCharByteHashMap. toSortedList()
MutableByteList
ImmutableCharByteSingletonMap. toSortedList()
MutableByteList
ImmutableDoubleByteEmptyMap. toSortedList()
MutableByteList
ImmutableDoubleByteHashMap. toSortedList()
MutableByteList
ImmutableDoubleByteSingletonMap. toSortedList()
MutableByteList
ImmutableFloatByteEmptyMap. toSortedList()
MutableByteList
ImmutableFloatByteHashMap. toSortedList()
MutableByteList
ImmutableFloatByteSingletonMap. toSortedList()
MutableByteList
ImmutableIntByteEmptyMap. toSortedList()
MutableByteList
ImmutableIntByteHashMap. toSortedList()
MutableByteList
ImmutableIntByteSingletonMap. toSortedList()
MutableByteList
ImmutableLongByteEmptyMap. toSortedList()
MutableByteList
ImmutableLongByteHashMap. toSortedList()
MutableByteList
ImmutableLongByteSingletonMap. toSortedList()
MutableByteList
ImmutableObjectByteEmptyMap. toSortedList()
MutableByteList
ImmutableObjectByteHashMap. toSortedList()
MutableByteList
ImmutableObjectByteSingletonMap. toSortedList()
MutableByteList
ImmutableShortByteEmptyMap. toSortedList()
MutableByteList
ImmutableShortByteHashMap. toSortedList()
MutableByteList
ImmutableShortByteSingletonMap. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
AbstractMutableByteKeySet. toList()
MutableByteList
AbstractMutableByteValuesMap.AbstractByteValuesCollection. toList()
MutableByteList
ByteBooleanHashMap.KeysView. toList()
MutableByteList
ObjectByteHashMap. toList()
MutableByteList
ObjectByteHashMap.ValuesCollection. toList()
MutableByteList
ObjectByteHashMapWithHashingStrategy. toList()
MutableByteList
ObjectByteHashMapWithHashingStrategy.ValuesCollection. toList()
MutableByteList
SynchronizedByteByteMap. toList()
MutableByteList
SynchronizedCharByteMap. toList()
MutableByteList
SynchronizedDoubleByteMap. toList()
MutableByteList
SynchronizedFloatByteMap. toList()
MutableByteList
SynchronizedIntByteMap. toList()
MutableByteList
SynchronizedLongByteMap. toList()
MutableByteList
SynchronizedObjectByteMap. toList()
MutableByteList
SynchronizedShortByteMap. toList()
MutableByteList
UnmodifiableByteByteMap. toList()
MutableByteList
UnmodifiableCharByteMap. toList()
MutableByteList
UnmodifiableDoubleByteMap. toList()
MutableByteList
UnmodifiableFloatByteMap. toList()
MutableByteList
UnmodifiableIntByteMap. toList()
MutableByteList
UnmodifiableLongByteMap. toList()
MutableByteList
UnmodifiableObjectByteMap. toList()
MutableByteList
UnmodifiableShortByteMap. toList()
MutableByteList
AbstractMutableByteKeySet. toSortedList()
MutableByteList
AbstractMutableByteValuesMap.AbstractByteValuesCollection. toSortedList()
MutableByteList
ObjectByteHashMap. toSortedList()
MutableByteList
ObjectByteHashMap.ValuesCollection. toSortedList()
MutableByteList
ObjectByteHashMapWithHashingStrategy. toSortedList()
MutableByteList
ObjectByteHashMapWithHashingStrategy.ValuesCollection. toSortedList()
MutableByteList
SynchronizedByteByteMap. toSortedList()
MutableByteList
SynchronizedCharByteMap. toSortedList()
MutableByteList
SynchronizedDoubleByteMap. toSortedList()
MutableByteList
SynchronizedFloatByteMap. toSortedList()
MutableByteList
SynchronizedIntByteMap. toSortedList()
MutableByteList
SynchronizedLongByteMap. toSortedList()
MutableByteList
SynchronizedObjectByteMap. toSortedList()
MutableByteList
SynchronizedShortByteMap. toSortedList()
MutableByteList
UnmodifiableByteByteMap. toSortedList()
MutableByteList
UnmodifiableCharByteMap. toSortedList()
MutableByteList
UnmodifiableDoubleByteMap. toSortedList()
MutableByteList
UnmodifiableFloatByteMap. toSortedList()
MutableByteList
UnmodifiableIntByteMap. toSortedList()
MutableByteList
UnmodifiableLongByteMap. toSortedList()
MutableByteList
UnmodifiableObjectByteMap. toSortedList()
MutableByteList
UnmodifiableShortByteMap. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableByteList Modifier and Type Method Description MutableByteList
OrderedMapAdapter. collectByte(ByteFunction<? super V> byteFunction)
MutableByteList
UnmodifiableMutableOrderedMap. collectByte(ByteFunction<? super V> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableByteList Modifier and Type Method Description MutableByteList
AbstractMutableSortedMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteList
SynchronizedSortedMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteList
UnmodifiableTreeMap. collectByte(ByteFunction<? super V> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
AbstractByteIterable. toList()
MutableByteList
SynchronizedByteIterable. toList()
MutableByteList
AbstractByteIterable. toSortedList()
MutableByteList
SynchronizedByteIterable. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
ImmutableByteEmptySet. toList()
MutableByteList
ImmutableByteSingletonSet. toList()
MutableByteList
ImmutableByteEmptySet. toSortedList()
MutableByteList
ImmutableByteSingletonSet. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
ByteHashSet.ImmutableByteHashSet. toList()
MutableByteList
ByteHashSet. toList()
MutableByteList
ByteHashSet.ImmutableByteHashSet. toSortedList()
MutableByteList
ByteHashSet. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableByteList Modifier and Type Method Description MutableByteList
SortedSetAdapter. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
SynchronizedSortedSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
TreeSortedSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
UnmodifiableSortedSet. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
ImmutableByteEmptyStack. toList()
MutableByteList
ImmutableByteSingletonStack. toList()
MutableByteList
ImmutableByteArrayStack. toSortedList()
MutableByteList
ImmutableByteEmptyStack. toSortedList()
MutableByteList
ImmutableByteSingletonStack. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
SynchronizedByteStack. toList()
MutableByteList
UnmodifiableByteStack. toList()
MutableByteList
ByteArrayStack. toSortedList()
MutableByteList
SynchronizedByteStack. toSortedList()
MutableByteList
UnmodifiableByteStack. toSortedList()
-
Uses of MutableByteList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableByteList Modifier and Type Method Description MutableByteList
AbstractByteStack. toList()
-
Uses of MutableByteList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableByteList Modifier and Type Method Description static <T> MutableByteList
ArrayIterate. collectByte(T[] objectArray, ByteFunction<? super T> byteFunction)
static <T> MutableByteList
ArrayListIterate. collectByte(java.util.ArrayList<T> list, ByteFunction<? super T> byteFunction)
static <T> MutableByteList
ListIterate. collectByte(java.util.List<T> list, ByteFunction<? super T> byteFunction)
-
Uses of MutableByteList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableByteList Modifier and Type Method Description static <T> MutableByteList
RandomAccessListIterate. collectByte(java.util.List<T> list, ByteFunction<? super T> byteFunction)
-