Uses of Interface
org.eclipse.collections.api.list.primitive.MutableByteList
Packages that use MutableByteList
Package
Description
This package contains interfaces for Eclipse Collections API.
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
MapThis package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of
MutableSortedBag.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of
MutableSortedSet.This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
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 MutableByteListModifier and TypeMethodDescriptionByteIterable.toList()Converts the ByteIterable to a new MutableByteList.ByteIterable.toSortedList()default MutableByteListByteIterable.toSortedList(ByteComparator comparator) Converts the collection to a MutableByteList implementation sorted using the provided comparator.default <T> MutableByteListByteIterable.toSortedListBy(ByteToObjectFunction<T> function) Converts the collection to a MutableByteListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableByteListByteIterable.toSortedListBy(ByteToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableByteList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of MutableByteList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableByteListModifier and TypeMethodDescriptionMutableSortedBag.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 MutableByteListModifier and TypeMethodDescriptionMutableByteListFactory.empty()MutableByteListFactory.of()Same asMutableByteListFactory.empty().MutableByteListFactory.of(byte... items) Same asMutableByteListFactory.with(byte[]).MutableByteListFactory.ofAll(ByteIterable items) MutableByteListFactory.with()Same asMutableByteListFactory.empty().MutableByteListFactory.with(byte... items) Creates a new list using the passeditemsargument as the backing store.MutableByteListFactory.withAll(ByteIterable items) default MutableByteListMutableByteListFactory.withInitialCapacity(int capacity) Same asMutableByteListFactory.empty().default MutableByteListMutableByteListFactory.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 MutableByteListModifier and TypeMethodDescriptiondefault MutableByteListMutableList.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 MutableByteListModifier and TypeMethodDescriptionMutableByteList.asSynchronized()MutableByteList.asUnmodifiable()MutableByteList.distinct()default MutableByteListMutableByteList.newEmpty()Creates a new empty mutable version of the same List type.MutableByteList.reject(BytePredicate predicate) default MutableByteListMutableByteList.rejectWithIndex(ByteIntPredicate predicate) Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.MutableByteList.reverseThis()MutableByteList.select(BytePredicate predicate) default MutableByteListMutableByteList.selectWithIndex(ByteIntPredicate predicate) Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.default MutableByteListMutableByteList.shuffleThis()Randomly permutes this list mutating its contents and returns the same list (this).default MutableByteListMutableByteList.shuffleThis(Random rnd) Randomly permutes this list mutating its contents and returns the same list (this).MutableByteList.sortThis()Sorts this list mutating its contents and returns the same mutable list (this).default MutableByteListMutableByteList.sortThis(ByteComparator comparator) Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableByteListMutableByteList.sortThisBy(ByteToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableByteListMutableByteList.sortThisBy(ByteToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableByteList.subList(int fromIndex, int toIndex) default MutableByteListMutableByteList.tap(ByteProcedure procedure) MutableByteList.toReversed()MutableByteList.with(byte element) MutableByteList.withAll(ByteIterable elements) MutableByteList.without(byte element) MutableByteList.withoutAll(ByteIterable elements) -
Uses of MutableByteList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableByteListModifier and TypeMethodDescriptionMutableOrderedMap.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 MutableByteListModifier and TypeMethodDescriptionMutableSortedMap.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 MutableByteListModifier and TypeMethodDescriptionMutableSortedSet.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 MutableByteListModifier and TypeMethodDescriptionImmutableByteEmptyBag.toList()ImmutableByteHashBag.toList()ImmutableByteSingletonBag.toList()ImmutableByteEmptyBag.toSortedList()ImmutableByteHashBag.toSortedList()ImmutableByteSingletonBag.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableByteListModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectByte(ByteFunction<? super T> byteFunction) SynchronizedSortedBag.collectByte(ByteFunction<? super T> byteFunction) 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 MutableByteListModifier and TypeMethodDescriptionAbstractSynchronizedByteCollection.toList()AbstractUnmodifiableByteCollection.toList()AbstractSynchronizedByteCollection.toSortedList()AbstractUnmodifiableByteCollection.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableByteListModifier and TypeMethodDescriptionAbstractLazyByteIterable.toList()CollectByteIterable.toList()LazyByteIterableAdapter.toList()ReverseByteIterable.toList()SelectByteIterable.toList()AbstractLazyByteIterable.toSortedList()LazyByteIterableAdapter.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableByteListModifier and TypeMethodDescriptionImmutableByteArrayList.toList()ImmutableByteEmptyList.toList()ImmutableByteSingletonList.toList()ImmutableByteArrayList.toSortedList()ImmutableByteEmptyList.toSortedList()ImmutableByteSingletonList.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableByteListModifier and TypeMethodDescriptionMultiReaderFastList.collectByte(ByteFunction<? super T> byteFunction) MultiReaderFastList.UntouchableMutableList.collectByte(ByteFunction<? super T> byteFunction) SynchronizedMutableList.collectByte(ByteFunction<? super T> byteFunction) 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 MutableByteListModifier and TypeClassDescriptionclassByteArrayList is similar to FastList, and is memory-optimized for byte primitives.classA synchronized view of aMutableByteList.classThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableByteListMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableByteListModifier and TypeMethodDescriptionByteArrayList.asSynchronized()SynchronizedByteList.asSynchronized()UnmodifiableByteList.asSynchronized()ByteArrayList.asUnmodifiable()SynchronizedByteList.asUnmodifiable()UnmodifiableByteList.asUnmodifiable()ByteArrayList.distinct()SynchronizedByteList.distinct()UnmodifiableByteList.distinct()MutableByteListFactoryImpl.empty()private MutableByteListSynchronizedByteList.getMutableByteList()private MutableByteListUnmodifiableByteList.getMutableByteList()SynchronizedByteList.newEmpty()UnmodifiableByteList.newEmpty()MutableByteListFactoryImpl.of()MutableByteListFactoryImpl.of(byte... items) MutableByteListFactoryImpl.ofAll(ByteIterable items) SynchronizedByteList.reject(BytePredicate predicate) UnmodifiableByteList.reject(BytePredicate predicate) SynchronizedByteList.rejectWithIndex(ByteIntPredicate predicate) Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.UnmodifiableByteList.rejectWithIndex(ByteIntPredicate predicate) Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.SynchronizedByteList.reverseThis()UnmodifiableByteList.reverseThis()SynchronizedByteList.select(BytePredicate predicate) UnmodifiableByteList.select(BytePredicate predicate) SynchronizedByteList.selectWithIndex(ByteIntPredicate predicate) Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.UnmodifiableByteList.selectWithIndex(ByteIntPredicate predicate) Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.SynchronizedByteList.shuffleThis()SynchronizedByteList.shuffleThis(Random rnd) UnmodifiableByteList.shuffleThis()SynchronizedByteList.sortThis()SynchronizedByteList.sortThis(ByteComparator comparator) UnmodifiableByteList.sortThis()<T> MutableByteListSynchronizedByteList.sortThisBy(ByteToObjectFunction<T> function) <T> MutableByteListSynchronizedByteList.sortThisBy(ByteToObjectFunction<T> function, Comparator<? super T> comparator) ByteArrayList.subList(int fromIndex, int toIndex) SynchronizedByteList.subList(int fromIndex, int toIndex) UnmodifiableByteList.subList(int fromIndex, int toIndex) SynchronizedByteList.toReversed()UnmodifiableByteList.toReversed()MutableByteListFactoryImpl.with()MutableByteListFactoryImpl.with(byte... items) Creates a new list using the passeditemsargument as the backing store.MutableByteListFactoryImpl.withAll(ByteIterable items) MutableByteListFactoryImpl.withInitialCapacity(int capacity) Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableByteListModifierConstructorDescriptionBoxedMutableByteList(MutableByteList delegate) SynchronizedByteList(MutableByteList list, Object newLock) -
Uses of MutableByteList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableByteListModifier and TypeMethodDescriptionImmutableByteByteEmptyMap.toList()ImmutableByteByteHashMap.toList()ImmutableByteByteSingletonMap.toList()ImmutableCharByteEmptyMap.toList()ImmutableCharByteHashMap.toList()ImmutableCharByteSingletonMap.toList()ImmutableDoubleByteEmptyMap.toList()ImmutableDoubleByteHashMap.toList()ImmutableDoubleByteSingletonMap.toList()ImmutableFloatByteEmptyMap.toList()ImmutableFloatByteHashMap.toList()ImmutableFloatByteSingletonMap.toList()ImmutableIntByteEmptyMap.toList()ImmutableIntByteHashMap.toList()ImmutableIntByteSingletonMap.toList()ImmutableLongByteEmptyMap.toList()ImmutableLongByteHashMap.toList()ImmutableLongByteSingletonMap.toList()ImmutableObjectByteEmptyMap.toList()ImmutableObjectByteHashMap.toList()ImmutableObjectByteSingletonMap.toList()ImmutableShortByteEmptyMap.toList()ImmutableShortByteHashMap.toList()ImmutableShortByteSingletonMap.toList()ImmutableByteByteEmptyMap.toSortedList()ImmutableByteByteHashMap.toSortedList()ImmutableByteByteSingletonMap.toSortedList()ImmutableCharByteEmptyMap.toSortedList()ImmutableCharByteHashMap.toSortedList()ImmutableCharByteSingletonMap.toSortedList()ImmutableDoubleByteEmptyMap.toSortedList()ImmutableDoubleByteHashMap.toSortedList()ImmutableDoubleByteSingletonMap.toSortedList()ImmutableFloatByteEmptyMap.toSortedList()ImmutableFloatByteHashMap.toSortedList()ImmutableFloatByteSingletonMap.toSortedList()ImmutableIntByteEmptyMap.toSortedList()ImmutableIntByteHashMap.toSortedList()ImmutableIntByteSingletonMap.toSortedList()ImmutableLongByteEmptyMap.toSortedList()ImmutableLongByteHashMap.toSortedList()ImmutableLongByteSingletonMap.toSortedList()ImmutableObjectByteEmptyMap.toSortedList()ImmutableObjectByteHashMap.toSortedList()ImmutableObjectByteSingletonMap.toSortedList()ImmutableShortByteEmptyMap.toSortedList()ImmutableShortByteHashMap.toSortedList()ImmutableShortByteSingletonMap.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteListModifier and TypeMethodDescriptionAbstractMutableByteKeySet.toList()AbstractMutableByteValuesMap.AbstractByteValuesCollection.toList()ByteBooleanHashMap.KeysView.toList()ObjectByteHashMap.toList()ObjectByteHashMap.ValuesCollection.toList()ObjectByteHashMapWithHashingStrategy.toList()ObjectByteHashMapWithHashingStrategy.ValuesCollection.toList()SynchronizedByteByteMap.toList()SynchronizedCharByteMap.toList()SynchronizedDoubleByteMap.toList()SynchronizedFloatByteMap.toList()SynchronizedIntByteMap.toList()SynchronizedLongByteMap.toList()SynchronizedObjectByteMap.toList()SynchronizedShortByteMap.toList()UnmodifiableByteByteMap.toList()UnmodifiableCharByteMap.toList()UnmodifiableDoubleByteMap.toList()UnmodifiableFloatByteMap.toList()UnmodifiableIntByteMap.toList()UnmodifiableLongByteMap.toList()UnmodifiableObjectByteMap.toList()UnmodifiableShortByteMap.toList()AbstractMutableByteKeySet.toSortedList()AbstractMutableByteValuesMap.AbstractByteValuesCollection.toSortedList()ObjectByteHashMap.toSortedList()ObjectByteHashMap.ValuesCollection.toSortedList()ObjectByteHashMapWithHashingStrategy.toSortedList()ObjectByteHashMapWithHashingStrategy.ValuesCollection.toSortedList()SynchronizedByteByteMap.toSortedList()SynchronizedCharByteMap.toSortedList()SynchronizedDoubleByteMap.toSortedList()SynchronizedFloatByteMap.toSortedList()SynchronizedIntByteMap.toSortedList()SynchronizedLongByteMap.toSortedList()SynchronizedObjectByteMap.toSortedList()SynchronizedShortByteMap.toSortedList()UnmodifiableByteByteMap.toSortedList()UnmodifiableCharByteMap.toSortedList()UnmodifiableDoubleByteMap.toSortedList()UnmodifiableFloatByteMap.toSortedList()UnmodifiableIntByteMap.toSortedList()UnmodifiableLongByteMap.toSortedList()UnmodifiableObjectByteMap.toSortedList()UnmodifiableShortByteMap.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableByteListModifier and TypeMethodDescriptionOrderedMapAdapter.collectByte(ByteFunction<? super V> byteFunction) 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 MutableByteListModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectByte(ByteFunction<? super V> byteFunction) SynchronizedSortedMap.collectByte(ByteFunction<? super V> byteFunction) UnmodifiableTreeMap.collectByte(ByteFunction<? super V> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableByteListModifier and TypeMethodDescriptionAbstractByteIterable.toList()SynchronizedByteIterable.toList()AbstractByteIterable.toSortedList()SynchronizedByteIterable.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableByteListModifier and TypeMethodDescriptionImmutableByteEmptySet.toList()ImmutableByteSingletonSet.toList()ImmutableByteEmptySet.toSortedList()ImmutableByteSingletonSet.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return MutableByteListModifier and TypeMethodDescriptionByteHashSet.ImmutableByteHashSet.toList()ByteHashSet.toList()ByteHashSet.ImmutableByteHashSet.toSortedList()ByteHashSet.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableByteListModifier and TypeMethodDescriptionSortedSetAdapter.collectByte(ByteFunction<? super T> byteFunction) SynchronizedSortedSet.collectByte(ByteFunction<? super T> byteFunction) TreeSortedSet.collectByte(ByteFunction<? super T> byteFunction) 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 MutableByteListModifier and TypeMethodDescriptionImmutableByteEmptyStack.toList()ImmutableByteSingletonStack.toList()ImmutableByteArrayStack.toSortedList()ImmutableByteEmptyStack.toSortedList()ImmutableByteSingletonStack.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableByteListModifier and TypeMethodDescriptionSynchronizedByteStack.toList()UnmodifiableByteStack.toList()ByteArrayStack.toSortedList()SynchronizedByteStack.toSortedList()UnmodifiableByteStack.toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableByteList -
Uses of MutableByteList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableByteListModifier and TypeMethodDescriptionstatic <T> MutableByteListArrayIterate.collectByte(T[] objectArray, ByteFunction<? super T> byteFunction) static <T> MutableByteListArrayListIterate.collectByte(ArrayList<T> list, ByteFunction<? super T> byteFunction) static <T> MutableByteListListIterate.collectByte(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 MutableByteListModifier and TypeMethodDescriptionstatic <T> MutableByteListRandomAccessListIterate.collectByte(List<T> list, ByteFunction<? super T> byteFunction)