Uses of Interface
org.eclipse.collections.api.list.ListIterable
-
Packages that use ListIterable Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.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.multimap.list This package contains interfaces forListMultimap
.org.eclipse.collections.api.ordered org.eclipse.collections.api.partition.list This package contains interfaces forPartitionList
.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.org.eclipse.collections.impl.lazy.parallel.list org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of ListIterable in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ListIterable Modifier and Type Method Description ListIterable<ObjectIntPair<T>>
Bag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ListIterable<ObjectIntPair<T>>
Bag. topOccurrences(int count)
Returns thecount
most frequently occurring items. -
Uses of ListIterable in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ListIterable Modifier and Type Method Description ListIterable<BooleanIntPair>
BooleanBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ListIterable<ByteIntPair>
ByteBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ListIterable<CharIntPair>
CharBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ListIterable<DoubleIntPair>
DoubleBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ListIterable<FloatIntPair>
FloatBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ListIterable<IntIntPair>
IntBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ListIterable<LongIntPair>
LongBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ListIterable<ShortIntPair>
ShortBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ListIterable<BooleanIntPair>
BooleanBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ListIterable<ByteIntPair>
ByteBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ListIterable<CharIntPair>
CharBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ListIterable<DoubleIntPair>
DoubleBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ListIterable<FloatIntPair>
FloatBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ListIterable<IntIntPair>
IntBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ListIterable<LongIntPair>
LongBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ListIterable<ShortIntPair>
ShortBag. topOccurrences(int count)
Returns thecount
most frequently occurring items. -
Uses of ListIterable in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ListIterable Modifier and Type Method Description <V> ListIterable<V>
SortedBag. collect(Function<? super T,? extends V> function)
<V> ListIterable<V>
SortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ListIterable<V>SortedBag. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
default <V> ListIterable<V>
SortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ListIterable<V>
SortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ListIterable<V>
SortedBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
default <P,V>
ListIterable<V>SortedBag. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)
-
Uses of ListIterable in org.eclipse.collections.api.list
Subinterfaces of ListIterable in org.eclipse.collections.api.list Modifier and Type Interface Description interface
FixedSizeList<T>
A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.interface
ImmutableList<T>
ImmutableList is the non-modifiable equivalent interface toMutableList
.interface
MultiReaderList<T>
A MultiReaderList provides thread-safe iteration for a list through methodswithReadLockAndDelegate()
andwithWriteLockAndDelegate()
.interface
MutableList<T>
A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol.Methods in org.eclipse.collections.api.list that return ListIterable Modifier and Type Method Description <V> ListIterable<V>
ListIterable. collect(Function<? super T,? extends V> function)
<V> ListIterable<V>
ListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ListIterable<V>ListIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
default <V> ListIterable<V>
ListIterable. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
ListIterable<T>
ListIterable. distinct()
Returns a newListIterable
containing the distinct elements in this list.ListIterable<T>
ListIterable. distinct(HashingStrategy<? super T> hashingStrategy)
Returns a newListIterable
containing the distinct elements in this list.<V> ListIterable<T>
ListIterable. distinctBy(Function<? super T,? extends V> function)
Returns a newListIterable
containing the distinct elements in this list.ListIterable<T>
ListIterable. drop(int count)
ListIterable<T>
ListIterable. dropWhile(Predicate<? super T> predicate)
Returns the final elements that do not satisfy the Predicate.<V> ListIterable<V>
ListIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
default <P,V>
ListIterable<V>ListIterable. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)
ListIterable<T>
ListIterable. reject(Predicate<? super T> predicate)
<P> ListIterable<T>
ListIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
default ListIterable<T>
ListIterable. rejectWithIndex(ObjectIntPredicate<? super T> predicate)
Returns a new ListIterable with all elements of the collection that return false when evaluating the specified predicate which is supplied each element and its relative index.ListIterable<T>
ListIterable. select(Predicate<? super T> predicate)
<S> ListIterable<S>
ListIterable. selectInstancesOf(java.lang.Class<S> clazz)
<P> ListIterable<T>
ListIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
default ListIterable<T>
ListIterable. selectWithIndex(ObjectIntPredicate<? super T> predicate)
Returns a new ListIterable with all elements of the collection that return true when evaluating the specified predicate which is supplied each element and its relative index.ListIterable<T>
ListIterable. subList(int fromIndex, int toIndex)
ListIterable<T>
ListIterable. take(int count)
ListIterable<T>
ListIterable. takeWhile(Predicate<? super T> predicate)
Returns the initial elements that satisfy the Predicate.ListIterable<T>
ListIterable. tap(Procedure<? super T> procedure)
ListIterable<T>
ListIterable. toReversed()
<S> ListIterable<Pair<T,S>>
ListIterable. zip(java.lang.Iterable<S> that)
ListIterable<Pair<T,java.lang.Integer>>
ListIterable. zipWithIndex()
Methods in org.eclipse.collections.api.list with parameters of type ListIterable Modifier and Type Method Description default <T2> void
ListIterable. forEachInBoth(ListIterable<T2> other, Procedure2<? super T,? super T2> procedure)
Iterates over this ListIterable and the other ListIterable together passing the elements of each list as parameters to the specified procedure. -
Uses of ListIterable in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ListIterable Modifier and Type Method Description <V> ListIterable<V>
BooleanList. collect(BooleanToObjectFunction<? extends V> function)
<V> ListIterable<V>
ByteList. collect(ByteToObjectFunction<? extends V> function)
<V> ListIterable<V>
CharList. collect(CharToObjectFunction<? extends V> function)
<V> ListIterable<V>
DoubleList. collect(DoubleToObjectFunction<? extends V> function)
<V> ListIterable<V>
FloatList. collect(FloatToObjectFunction<? extends V> function)
<V> ListIterable<V>
IntList. collect(IntToObjectFunction<? extends V> function)
<V> ListIterable<V>
LongList. collect(LongToObjectFunction<? extends V> function)
<V> ListIterable<V>
ShortList. collect(ShortToObjectFunction<? extends V> function)
default <V> ListIterable<V>
BooleanList. collectWithIndex(BooleanIntToObjectFunction<? extends V> function)
Returns a new ListIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ListIterable<V>
ByteList. collectWithIndex(ByteIntToObjectFunction<? extends V> function)
Returns a new ListIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ListIterable<V>
CharList. collectWithIndex(CharIntToObjectFunction<? extends V> function)
Returns a new ListIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ListIterable<V>
DoubleList. collectWithIndex(DoubleIntToObjectFunction<? extends V> function)
Returns a new ListIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ListIterable<V>
FloatList. collectWithIndex(FloatIntToObjectFunction<? extends V> function)
Returns a new ListIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ListIterable<V>
IntList. collectWithIndex(IntIntToObjectFunction<? extends V> function)
Returns a new ListIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ListIterable<V>
LongList. collectWithIndex(LongIntToObjectFunction<? extends V> function)
Returns a new ListIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ListIterable<V>
ShortList. collectWithIndex(ShortIntToObjectFunction<? extends V> function)
Returns a new ListIterable using results obtained by applying the specified function to each element and its corresponding index.default <T> ListIterable<BooleanObjectPair<T>>
BooleanList. zip(java.lang.Iterable<T> iterable)
Returns aListIterable
formed from thisBooleanList
and aListIterable
by combining corresponding elements in pairs.default <T> ListIterable<ByteObjectPair<T>>
ByteList. zip(java.lang.Iterable<T> iterable)
Returns aListIterable
formed from thisByteList
and aListIterable
by combining corresponding elements in pairs.default <T> ListIterable<CharObjectPair<T>>
CharList. zip(java.lang.Iterable<T> iterable)
Returns aListIterable
formed from thisCharList
and aListIterable
by combining corresponding elements in pairs.default <T> ListIterable<DoubleObjectPair<T>>
DoubleList. zip(java.lang.Iterable<T> iterable)
Returns aListIterable
formed from thisDoubleList
and aListIterable
by combining corresponding elements in pairs.default <T> ListIterable<FloatObjectPair<T>>
FloatList. zip(java.lang.Iterable<T> iterable)
Returns aListIterable
formed from thisFloatList
and aListIterable
by combining corresponding elements in pairs.default <T> ListIterable<IntObjectPair<T>>
IntList. zip(java.lang.Iterable<T> iterable)
Returns aListIterable
formed from thisIntList
and aListIterable
by combining corresponding elements in pairs.default <T> ListIterable<LongObjectPair<T>>
LongList. zip(java.lang.Iterable<T> iterable)
Returns aListIterable
formed from thisLongList
and aListIterable
by combining corresponding elements in pairs.default <T> ListIterable<ShortObjectPair<T>>
ShortList. zip(java.lang.Iterable<T> iterable)
Returns aListIterable
formed from thisShortList
and aListIterable
by combining corresponding elements in pairs.default ListIterable<BooleanBooleanPair>
BooleanList. zipBoolean(BooleanIterable iterable)
Returns aListIterable
formed from thisBooleanList
and anotherBooleanList
by combining corresponding elements in pairs.default ListIterable<ByteBytePair>
ByteList. zipByte(ByteIterable iterable)
Returns aListIterable
formed from thisByteList
and anotherByteList
by combining corresponding elements in pairs.default ListIterable<CharCharPair>
CharList. zipChar(CharIterable iterable)
Returns aListIterable
formed from thisCharList
and anotherCharList
by combining corresponding elements in pairs.default ListIterable<DoubleDoublePair>
DoubleList. zipDouble(DoubleIterable iterable)
Returns aListIterable
formed from thisDoubleList
and anotherDoubleList
by combining corresponding elements in pairs.default ListIterable<FloatFloatPair>
FloatList. zipFloat(FloatIterable iterable)
Returns aListIterable
formed from thisFloatList
and anotherFloatList
by combining corresponding elements in pairs.default ListIterable<IntIntPair>
IntList. zipInt(IntIterable iterable)
Returns aListIterable
formed from thisIntList
and anotherIntList
by combining corresponding elements in pairs.default ListIterable<LongLongPair>
LongList. zipLong(LongIterable iterable)
Returns aListIterable
formed from thisLongList
and anotherLongList
by combining corresponding elements in pairs.default ListIterable<ShortShortPair>
ShortList. zipShort(ShortIterable iterable)
Returns aListIterable
formed from thisShortList
and anotherShortList
by combining corresponding elements in pairs. -
Uses of ListIterable in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ListIterable Modifier and Type Method Description <VV> ListIterable<VV>
OrderedMap. collect(Function<? super V,? extends VV> function)
<V1> ListIterable<V1>
OrderedMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
<P,V1>
ListIterable<V1>OrderedMap. collectWith(Function2<? super V,? super P,? extends V1> function, P parameter)
ListIterable<V>
OrderedMap. distinct()
<V1> ListIterable<V1>
OrderedMap. flatCollect(Function<? super V,? extends java.lang.Iterable<V1>> function)
default <P,V1>
ListIterable<V1>OrderedMap. flatCollectWith(Function2<? super V,? super P,? extends java.lang.Iterable<V1>> function, P parameter)
ListIterable<V>
OrderedMap. reject(Predicate<? super V> predicate)
<P> ListIterable<V>
OrderedMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)
ListIterable<V>
OrderedMap. select(Predicate<? super V> predicate)
<S> ListIterable<S>
OrderedMap. selectInstancesOf(java.lang.Class<S> clazz)
<P> ListIterable<V>
OrderedMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)
<S> ListIterable<Pair<V,S>>
OrderedMap. zip(java.lang.Iterable<S> that)
ListIterable<Pair<V,java.lang.Integer>>
OrderedMap. zipWithIndex()
-
Uses of ListIterable in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ListIterable Modifier and Type Method Description <V1> ListIterable<V1>
SortedMapIterable. collect(Function<? super V,? extends V1> function)
<V1> ListIterable<V1>
SortedMapIterable. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
<P,V1>
ListIterable<V1>SortedMapIterable. collectWith(Function2<? super V,? super P,? extends V1> function, P parameter)
default <V1> ListIterable<V1>
SortedMapIterable. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends V1> function)
ListIterable<V>
SortedMapIterable. distinct()
<V1> ListIterable<V1>
SortedMapIterable. flatCollect(Function<? super V,? extends java.lang.Iterable<V1>> function)
default <P,V1>
ListIterable<V1>SortedMapIterable. flatCollectWith(Function2<? super V,? super P,? extends java.lang.Iterable<V1>> function, P parameter)
ListIterable<V>
SortedMapIterable. reject(Predicate<? super V> predicate)
<P> ListIterable<V>
SortedMapIterable. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)
ListIterable<V>
SortedMapIterable. select(Predicate<? super V> predicate)
<S> ListIterable<S>
SortedMapIterable. selectInstancesOf(java.lang.Class<S> clazz)
<P> ListIterable<V>
SortedMapIterable. selectWith(Predicate2<? super V,? super P> predicate, P parameter)
<S> ListIterable<Pair<V,S>>
SortedMapIterable. zip(java.lang.Iterable<S> that)
ListIterable<Pair<V,java.lang.Integer>>
SortedMapIterable. zipWithIndex()
-
Uses of ListIterable in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list that return ListIterable Modifier and Type Method Description ListIterable<V>
ListMultimap. get(K key)
-
Uses of ListIterable in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered that return ListIterable Modifier and Type Method Description <S> ListIterable<Pair<T,S>>
SortedIterable. zip(java.lang.Iterable<S> that)
-
Uses of ListIterable in org.eclipse.collections.api.partition.list
Methods in org.eclipse.collections.api.partition.list that return ListIterable Modifier and Type Method Description ListIterable<T>
PartitionList. getRejected()
ListIterable<T>
PartitionList. getSelected()
-
Uses of ListIterable in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ListIterable Modifier and Type Method Description <V> ListIterable<V>
SortedSetIterable. collect(Function<? super T,? extends V> function)
<V> ListIterable<V>
SortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ListIterable<V>SortedSetIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
default <V> ListIterable<V>
SortedSetIterable. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ListIterable<V>
SortedSetIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
default <P,V>
ListIterable<V>SortedSetIterable. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)
-
Uses of ListIterable in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ListIterable Modifier and Type Method Description ListIterable<T>
StackIterable. peek(int count)
ListIterable<T>
MutableStack. pop(int count)
Removes and returns a ListIterable of the number of elements specified by the count, beginning with the top of the stack.Methods in org.eclipse.collections.api.stack that return types with arguments of type ListIterable Modifier and Type Method Description default Pair<ListIterable<T>,ImmutableStack<T>>
ImmutableStack. peekAndPop(int count)
-
Uses of ListIterable in org.eclipse.collections.impl.lazy
Fields in org.eclipse.collections.impl.lazy declared as ListIterable Modifier and Type Field Description private ListIterable<T>
ReverseIterable. adapted
Methods in org.eclipse.collections.impl.lazy with parameters of type ListIterable Modifier and Type Method Description static <T> ReverseIterable<T>
ReverseIterable. adapt(ListIterable<T> listIterable)
Constructors in org.eclipse.collections.impl.lazy with parameters of type ListIterable Constructor Description ReverseIterable(ListIterable<T> newAdapted)
-
Uses of ListIterable in org.eclipse.collections.impl.lazy.parallel.list
Fields in org.eclipse.collections.impl.lazy.parallel.list declared as ListIterable Modifier and Type Field Description private ListIterable<T>
ListIterableParallelIterable. delegate
private ListIterable<T>
ListIterableBatch. list
Constructors in org.eclipse.collections.impl.lazy.parallel.list with parameters of type ListIterable Constructor Description ListIterableBatch(ListIterable<T> list, int chunkStartIndex, int chunkEndIndex)
ListIterableParallelIterable(ListIterable<T> delegate, java.util.concurrent.ExecutorService executorService, int batchSize)
NonParallelListIterable(ListIterable<T> delegate)
-
Uses of ListIterable in org.eclipse.collections.impl.list.fixed
Classes in org.eclipse.collections.impl.list.fixed that implement ListIterable Modifier and Type Class Description class
AbstractArrayAdapter<T>
class
AbstractMemoryEfficientMutableList<T>
private static class
AbstractMemoryEfficientMutableList.SubList<T>
class
ArrayAdapter<T>
This class provides a MutableList wrapper around an array.(package private) class
DoubletonList<T>
A DoubletonList is a two-element memory efficient List.(package private) class
EmptyList<T>
This class is a memory efficient list with no elements.(package private) class
QuadrupletonList<T>
This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) class
QuintupletonList<T>
This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) class
SextupletonList<T>
This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) class
SingletonList<T>
This class is a memory efficient list with one element.(package private) class
TripletonList<T>
This is a three element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three). -
Uses of ListIterable in org.eclipse.collections.impl.list.immutable
Classes in org.eclipse.collections.impl.list.immutable that implement ListIterable Modifier and Type Class Description (package private) class
AbstractImmutableList<T>
This class is the parent class for all ImmutableLists.protected static class
AbstractImmutableList.ImmutableSubList<T>
(package private) class
ImmutableArrayList<T>
An ImmutableArrayList wraps a Java array, but it cannot be modified after creation.(package private) class
ImmutableDecapletonList<T>
This is a ten element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven, eight, nine, ten) method.(package private) class
ImmutableDoubletonList<T>
This is a two element immutable List which is created by calling Immutable.newListWith(one, two) method.(package private) class
ImmutableEmptyList<T>
This is a zero elementImmutableList
which is created by calling the Lists.immutable.empty() method.(package private) class
ImmutableNonupletonList<T>
This is a nine element immutable List which is created by calling Lists.immutable.with(one, two, three, four, five, six, seven, eight, nine) method.(package private) class
ImmutableOctupletonList<T>
This is an eight element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven, eight) method.(package private) class
ImmutableQuadrupletonList<T>
This is a four element immutable List which is created by calling Immutable.newListWith(one, two, three, four) method.(package private) class
ImmutableQuintupletonList<T>
This is a five element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five) method.(package private) class
ImmutableSeptupletonList<T>
This is a seven element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six, seven) method.(package private) class
ImmutableSextupletonList<T>
This is a six element immutable List which is created by calling Immutable.newListWith(one, two, three, four, five, six) method.(package private) class
ImmutableSingletonList<T>
This is a single element immutable List which is created by calling Immutable.newListWith(one) method.(package private) class
ImmutableTripletonList<T>
This is a three element immutable List which is created by calling Immutable.newListWith(one, two, three) method. -
Uses of ListIterable in org.eclipse.collections.impl.list.mutable
Classes in org.eclipse.collections.impl.list.mutable that implement ListIterable Modifier and Type Class Description class
AbstractListAdapter<T>
class
AbstractMutableList<T>
protected static class
AbstractMutableList.SubList<T>
class
ArrayListAdapter<T>
This class provides a MutableList wrapper around a JDK Collections ArrayList instance.class
CompositeFastList<E>
CompositeFastList behaves like a list, but is composed of at least one list.class
FastList<T>
FastList is an attempt to provide the same functionality as ArrayList without the support for concurrent modification exceptions.class
ListAdapter<T>
This class provides a MutableList wrapper around a JDK Collections List interface instance.class
MultiReaderFastList<T>
MultiReadFastList provides a thread-safe wrapper around a FastList, using a ReentrantReadWriteLock.(package private) static class
MultiReaderFastList.UntouchableMutableList<T>
class
RandomAccessListAdapter<T>
This class provides a MutableList wrapper around a JDK Collections List interface instance.class
SynchronizedMutableList<T>
A synchronized view of aMutableList
.class
UnmodifiableMutableList<T>
An unmodifiable view of a list.private static class
UnmodifiableMutableList.RandomAccessUnmodifiableMutableList<T>
Methods in org.eclipse.collections.impl.list.mutable with parameters of type ListIterable Modifier and Type Method Description <T2> void
MultiReaderFastList. forEachInBoth(ListIterable<T2> other, Procedure2<? super T,? super T2> procedure)
<T2> void
SynchronizedMutableList. forEachInBoth(ListIterable<T2> other, Procedure2<? super T,? super T2> procedure)
-
Uses of ListIterable in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ListIterable Modifier and Type Method Description ListIterable<T>
ImmutableArrayStack. peek(int count)
Deprecated.ListIterable<T>
ImmutableEmptyStack. peek(int count)
ListIterable<T>
ImmutableNotEmptyStack. peek(int count)
Methods in org.eclipse.collections.impl.stack.immutable that return types with arguments of type ListIterable Modifier and Type Method Description Pair<ListIterable<T>,ImmutableStack<T>>
ImmutableArrayStack. peekAndPop(int count)
Deprecated.Pair<ListIterable<T>,ImmutableStack<T>>
ImmutableEmptyStack. peekAndPop(int count)
Pair<ListIterable<T>,ImmutableStack<T>>
ImmutableNotEmptyStack. peekAndPop(int count)
-
Uses of ListIterable in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return ListIterable Modifier and Type Method Description ListIterable<T>
ArrayStack. peek(int count)
ListIterable<T>
SynchronizedStack. peek(int count)
ListIterable<T>
UnmodifiableStack. peek(int count)
ListIterable<T>
ArrayStack. pop(int count)
ListIterable<T>
SynchronizedStack. pop(int count)
ListIterable<T>
UnmodifiableStack. pop(int count)
-
Uses of ListIterable in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type ListIterable Modifier and Type Method Description static <T> void
InternalArrayIterate. appendString(ListIterable<T> iterable, T[] array, int size, java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)
-