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 ofMaporg.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 theImmutableListinterface.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.ordered.immutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.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 ImmutableByteListImmutableSortedBag. 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 ImmutableByteListImmutableByteListFactory. empty()ImmutableByteListImmutableByteListFactory. of()Same asImmutableByteListFactory.empty().ImmutableByteListImmutableByteListFactory. of(byte one)Same asImmutableByteListFactory.with(byte).ImmutableByteListImmutableByteListFactory. of(byte... items)ImmutableByteListImmutableByteListFactory. ofAll(java.lang.Iterable<java.lang.Byte> iterable)ImmutableByteListImmutableByteListFactory. ofAll(ByteIterable items)ImmutableByteListImmutableByteListFactory. with()Same asImmutableByteListFactory.empty().ImmutableByteListImmutableByteListFactory. with(byte one)ImmutableByteListImmutableByteListFactory. with(byte... items)ImmutableByteListImmutableByteListFactory. withAll(java.lang.Iterable<java.lang.Byte> iterable)ImmutableByteListImmutableByteListFactory. 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 ImmutableByteListImmutableList. 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 ImmutableByteListImmutableByteList. distinct()ImmutableByteListImmutableByteList. newWith(byte element)ImmutableByteListImmutableByteList. newWithAll(ByteIterable elements)ImmutableByteListImmutableByteList. newWithout(byte element)ImmutableByteListImmutableByteList. newWithoutAll(ByteIterable elements)ImmutableByteListImmutableByteList. reject(BytePredicate predicate)default ImmutableByteListImmutableByteList. rejectWithIndex(ByteIntPredicate predicate)Returns a new ImmutableByteList excluding all elements with corresponding indexes matching the specified predicate.ImmutableByteListImmutableByteList. select(BytePredicate predicate)default ImmutableByteListImmutableByteList. selectWithIndex(ByteIntPredicate predicate)Returns a new ImmutableByteList including all elements with corresponding indexes matching the specified predicate.ImmutableByteListImmutableByteList. subList(int fromIndex, int toIndex)default ImmutableByteListImmutableByteList. tap(ByteProcedure procedure)ImmutableByteListByteList. toImmutable()Returns an immutable copy of this list.ImmutableByteListMutableByteList. toImmutable()Returns an immutable copy of this list.ImmutableByteListImmutableByteList. 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 ImmutableByteListImmutableOrderedMap. 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 ImmutableByteListImmutableSortedMap. 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 ImmutableByteListImmutableSortedSet. 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 ImmutableByteListAbstractImmutableSortedBag. 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 ImmutableByteListAbstractImmutableList. 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) classImmutableByteArrayListImmutableByteArrayList is the non-modifiable equivalent ofByteArrayList.(package private) classImmutableByteEmptyListImmutableByteEmptyList is an optimization forImmutableByteListof size 0.(package private) classImmutableByteSingletonListImmutableByteSingletonList is an optimization forImmutableByteListof size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableByteList Modifier and Type Field Description (package private) static ImmutableByteListImmutableByteEmptyList. INSTANCEMethods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableByteList Modifier and Type Method Description ImmutableByteListImmutableByteArrayList. distinct()ImmutableByteListImmutableByteEmptyList. distinct()ImmutableByteListImmutableByteSingletonList. distinct()ImmutableByteListImmutableByteListFactoryImpl. empty()ImmutableByteListImmutableByteArrayList. newWith(byte element)ImmutableByteListImmutableByteEmptyList. newWith(byte element)ImmutableByteListImmutableByteSingletonList. newWith(byte element)ImmutableByteListImmutableByteArrayList. newWithAll(ByteIterable elements)ImmutableByteListImmutableByteEmptyList. newWithAll(ByteIterable elements)ImmutableByteListImmutableByteSingletonList. newWithAll(ByteIterable elements)ImmutableByteListImmutableByteArrayList. newWithout(byte element)ImmutableByteListImmutableByteEmptyList. newWithout(byte element)ImmutableByteListImmutableByteSingletonList. newWithout(byte element)ImmutableByteListImmutableByteArrayList. newWithoutAll(ByteIterable elements)ImmutableByteListImmutableByteEmptyList. newWithoutAll(ByteIterable elements)ImmutableByteListImmutableByteSingletonList. newWithoutAll(ByteIterable elements)ImmutableByteListImmutableByteListFactoryImpl. of()ImmutableByteListImmutableByteListFactoryImpl. of(byte one)ImmutableByteListImmutableByteListFactoryImpl. of(byte... items)ImmutableByteListImmutableByteListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Byte> iterable)ImmutableByteListImmutableByteListFactoryImpl. ofAll(ByteIterable items)ImmutableByteListImmutableByteArrayList. reject(BytePredicate predicate)ImmutableByteListImmutableByteEmptyList. reject(BytePredicate predicate)ImmutableByteListImmutableByteSingletonList. reject(BytePredicate predicate)ImmutableByteListImmutableByteArrayList. select(BytePredicate predicate)ImmutableByteListImmutableByteEmptyList. select(BytePredicate predicate)ImmutableByteListImmutableByteSingletonList. select(BytePredicate predicate)ImmutableByteListImmutableByteArrayList. subList(int fromIndex, int toIndex)ImmutableByteListImmutableByteEmptyList. subList(int fromIndex, int toIndex)ImmutableByteListImmutableByteSingletonList. subList(int fromIndex, int toIndex)ImmutableByteListImmutableByteArrayList. toImmutable()ImmutableByteListImmutableByteEmptyList. toImmutable()ImmutableByteListImmutableByteSingletonList. toImmutable()ImmutableByteListImmutableByteListFactoryImpl. with()ImmutableByteListImmutableByteListFactoryImpl. with(byte one)ImmutableByteListImmutableByteListFactoryImpl. with(byte... items)ImmutableByteListImmutableByteListFactoryImpl. withAll(java.lang.Iterable<java.lang.Byte> iterable)ImmutableByteListImmutableByteListFactoryImpl. 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 ImmutableByteListByteArrayList. toImmutable()ImmutableByteListSynchronizedByteList. toImmutable()ImmutableByteListUnmodifiableByteList. toImmutable() -
Uses of ImmutableByteList in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable that return ImmutableByteList Modifier and Type Method Description ImmutableByteListImmutableOrderedMapAdapter. collectByte(ByteFunction<? super V> byteFunction) -
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 ImmutableByteListAbstractImmutableSortedMap. 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 ImmutableByteListAbstractImmutableSortedSet. collectByte(ByteFunction<? super T> byteFunction)
-