Uses of Interface
org.eclipse.collections.api.list.primitive.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 of
List. |
| 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 of
Map |
| 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.mutable |
This package contains implementations of
MutableSortedBag. |
| 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.mutable |
This package contains implementations of the
MutableList interface. |
| org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list 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 the
MutableSortedMap interface. |
| org.eclipse.collections.impl.primitive | |
| 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 of
MutableSortedSet. |
| 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 MutableByteListByteIterable. toList()Converts the ByteIterable to a new MutableByteList.MutableByteListByteIterable. toSortedList() -
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 MutableByteListMutableSortedBag. 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 MutableByteListMutableByteListFactory. empty()MutableByteListMutableByteListFactory. of()Same asMutableByteListFactory.empty().MutableByteListMutableByteListFactory. of(byte... items)Same asMutableByteListFactory.with(byte[]).MutableByteListMutableByteListFactory. ofAll(Iterable<Byte> iterable)MutableByteListMutableByteListFactory. ofAll(ByteIterable items)MutableByteListMutableByteListFactory. with()Same asMutableByteListFactory.empty().MutableByteListMutableByteListFactory. with(byte... items)Creates a new list using the passeditemsargument as the backing store.MutableByteListMutableByteListFactory. withAll(Iterable<Byte> iterable)MutableByteListMutableByteListFactory. 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 MutableByteList Modifier and Type Method Description 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 MutableByteList Modifier and Type Method Description MutableByteListMutableByteList. asSynchronized()MutableByteListMutableByteList. asUnmodifiable()MutableByteListMutableByteList. distinct()default MutableByteListMutableByteList. newEmpty()Creates a new empty mutable version of the same List type.MutableByteListMutableByteList. reject(BytePredicate predicate)MutableByteListMutableByteList. reverseThis()MutableByteListMutableByteList. select(BytePredicate 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).MutableByteListMutableByteList. 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.MutableByteListMutableByteList. subList(int fromIndex, int toIndex)default MutableByteListMutableByteList. tap(ByteProcedure procedure)MutableByteListMutableByteList. toReversed()MutableByteListMutableByteList. with(byte element)MutableByteListMutableByteList. withAll(ByteIterable elements)MutableByteListMutableByteList. without(byte element)MutableByteListMutableByteList. 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 MutableByteListMutableOrderedMap. 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 MutableByteListMutableSortedMap. 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 MutableByteListMutableSortedSet. collectByte(ByteFunction<? super T> byteFunction) -
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 MutableByteListAbstractMutableSortedBag. collectByte(ByteFunction<? super T> byteFunction)MutableByteListSynchronizedSortedBag. collectByte(ByteFunction<? super T> byteFunction)MutableByteListUnmodifiableSortedBag. 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 MutableByteListAbstractSynchronizedByteCollection. toList()MutableByteListAbstractUnmodifiableByteCollection. toList()MutableByteListAbstractSynchronizedByteCollection. toSortedList()MutableByteListAbstractUnmodifiableByteCollection. 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 MutableByteListAbstractLazyByteIterable. toList()MutableByteListCollectByteIterable. toList()MutableByteListLazyByteIterableAdapter. toList()MutableByteListReverseByteIterable. toList()MutableByteListSelectByteIterable. toList()MutableByteListAbstractLazyByteIterable. toSortedList()MutableByteListLazyByteIterableAdapter. 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 MutableByteListAbstractListAdapter. collectByte(ByteFunction<? super T> byteFunction)MutableByteListAbstractMutableList. collectByte(ByteFunction<? super T> byteFunction)MutableByteListArrayListAdapter. collectByte(ByteFunction<? super T> byteFunction)MutableByteListFastList. collectByte(ByteFunction<? super T> byteFunction)MutableByteListMultiReaderFastList. collectByte(ByteFunction<? super T> byteFunction)MutableByteListRandomAccessListAdapter. collectByte(ByteFunction<? super T> byteFunction)MutableByteListSynchronizedMutableList. collectByte(ByteFunction<? super T> byteFunction)MutableByteListUnmodifiableMutableList. 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 classByteArrayListByteArrayList is similar toFastList, and is memory-optimized for byte primitives.classSynchronizedByteListA synchronized view of aMutableByteList.classUnmodifiableByteListThis 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 MutableByteListByteArrayList. asSynchronized()MutableByteListSynchronizedByteList. asSynchronized()MutableByteListUnmodifiableByteList. asSynchronized()MutableByteListByteArrayList. asUnmodifiable()MutableByteListSynchronizedByteList. asUnmodifiable()MutableByteListUnmodifiableByteList. asUnmodifiable()MutableByteListByteArrayList. distinct()MutableByteListSynchronizedByteList. distinct()MutableByteListUnmodifiableByteList. distinct()MutableByteListMutableByteListFactoryImpl. empty()MutableByteListSynchronizedByteList. newEmpty()MutableByteListUnmodifiableByteList. newEmpty()MutableByteListMutableByteListFactoryImpl. of()MutableByteListMutableByteListFactoryImpl. of(byte... items)MutableByteListMutableByteListFactoryImpl. ofAll(Iterable<Byte> iterable)MutableByteListMutableByteListFactoryImpl. ofAll(ByteIterable items)MutableByteListSynchronizedByteList. reject(BytePredicate predicate)MutableByteListUnmodifiableByteList. reject(BytePredicate predicate)MutableByteListSynchronizedByteList. reverseThis()MutableByteListUnmodifiableByteList. reverseThis()MutableByteListSynchronizedByteList. select(BytePredicate predicate)MutableByteListUnmodifiableByteList. select(BytePredicate predicate)MutableByteListSynchronizedByteList. shuffleThis()MutableByteListSynchronizedByteList. shuffleThis(Random rnd)MutableByteListUnmodifiableByteList. shuffleThis()MutableByteListSynchronizedByteList. sortThis()MutableByteListSynchronizedByteList. sortThis(ByteComparator comparator)MutableByteListUnmodifiableByteList. sortThis()<T> MutableByteListSynchronizedByteList. sortThisBy(ByteToObjectFunction<T> function)<T> MutableByteListSynchronizedByteList. sortThisBy(ByteToObjectFunction<T> function, Comparator<? super T> comparator)MutableByteListByteArrayList. subList(int fromIndex, int toIndex)MutableByteListSynchronizedByteList. subList(int fromIndex, int toIndex)MutableByteListUnmodifiableByteList. subList(int fromIndex, int toIndex)MutableByteListSynchronizedByteList. toReversed()MutableByteListUnmodifiableByteList. toReversed()MutableByteListMutableByteListFactoryImpl. with()MutableByteListMutableByteListFactoryImpl. with(byte... items)Creates a new list using the passeditemsargument as the backing store.MutableByteListMutableByteListFactoryImpl. withAll(Iterable<Byte> iterable)MutableByteListMutableByteListFactoryImpl. withAll(ByteIterable items)MutableByteListMutableByteListFactoryImpl. 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, Object newLock)UnmodifiableByteList(MutableByteList list) -
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 MutableByteListAbstractMutableByteKeySet. toList()MutableByteListObjectByteHashMap. toList()MutableByteListObjectByteHashMapWithHashingStrategy. toList()MutableByteListSynchronizedByteByteMap. toList()MutableByteListSynchronizedCharByteMap. toList()MutableByteListSynchronizedDoubleByteMap. toList()MutableByteListSynchronizedFloatByteMap. toList()MutableByteListSynchronizedIntByteMap. toList()MutableByteListSynchronizedLongByteMap. toList()MutableByteListSynchronizedObjectByteMap. toList()MutableByteListSynchronizedShortByteMap. toList()MutableByteListUnmodifiableByteByteMap. toList()MutableByteListUnmodifiableCharByteMap. toList()MutableByteListUnmodifiableDoubleByteMap. toList()MutableByteListUnmodifiableFloatByteMap. toList()MutableByteListUnmodifiableIntByteMap. toList()MutableByteListUnmodifiableLongByteMap. toList()MutableByteListUnmodifiableObjectByteMap. toList()MutableByteListUnmodifiableShortByteMap. toList()MutableByteListAbstractMutableByteKeySet. toSortedList()MutableByteListObjectByteHashMap. toSortedList()MutableByteListObjectByteHashMapWithHashingStrategy. toSortedList()MutableByteListSynchronizedByteByteMap. toSortedList()MutableByteListSynchronizedCharByteMap. toSortedList()MutableByteListSynchronizedDoubleByteMap. toSortedList()MutableByteListSynchronizedFloatByteMap. toSortedList()MutableByteListSynchronizedIntByteMap. toSortedList()MutableByteListSynchronizedLongByteMap. toSortedList()MutableByteListSynchronizedObjectByteMap. toSortedList()MutableByteListSynchronizedShortByteMap. toSortedList()MutableByteListUnmodifiableByteByteMap. toSortedList()MutableByteListUnmodifiableCharByteMap. toSortedList()MutableByteListUnmodifiableDoubleByteMap. toSortedList()MutableByteListUnmodifiableFloatByteMap. toSortedList()MutableByteListUnmodifiableIntByteMap. toSortedList()MutableByteListUnmodifiableLongByteMap. toSortedList()MutableByteListUnmodifiableObjectByteMap. toSortedList()MutableByteListUnmodifiableShortByteMap. 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 MutableByteListOrderedMapAdapter. collectByte(ByteFunction<? super V> byteFunction)MutableByteListUnmodifiableMutableOrderedMap. 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 MutableByteListAbstractMutableSortedMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteListSynchronizedSortedMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteListUnmodifiableTreeMap. 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 MutableByteListAbstractByteIterable. toList()MutableByteListSynchronizedByteIterable. toList()MutableByteListAbstractByteIterable. toSortedList()MutableByteListSynchronizedByteIterable. 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 MutableByteListByteHashSet. toList()MutableByteListByteHashSet. 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 MutableByteListSortedSetAdapter. collectByte(ByteFunction<? super T> byteFunction)MutableByteListSynchronizedSortedSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteListTreeSortedSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteListUnmodifiableSortedSet. collectByte(ByteFunction<? super T> byteFunction) -
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 MutableByteListSynchronizedByteStack. toList()MutableByteListUnmodifiableByteStack. toList()MutableByteListByteArrayStack. toSortedList()MutableByteListSynchronizedByteStack. toSortedList()MutableByteListUnmodifiableByteStack. 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 MutableByteListAbstractByteStack. 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> 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 MutableByteList Modifier and Type Method Description static <T> MutableByteListRandomAccessListIterate. collectByte(List<T> list, ByteFunction<? super T> byteFunction)