Uses of Interface
org.eclipse.collections.api.ordered.ReversibleIterable
Packages that use ReversibleIterable
Package
Description
This package contains interfaces for SortedBag API.
This package contains interfaces for list API which enhance the performance and functionality of
List.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
MutableSortedBag.This package contains implementations of the
FixedSizeList interface.This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the
MutableSortedMap interface.This package contains implementations of
MutableSortedSet.-
Uses of ReversibleIterable in org.eclipse.collections.api.bag.sorted
Subinterfaces of ReversibleIterable in org.eclipse.collections.api.bag.sortedModifier and TypeInterfaceDescriptioninterfaceImmutableSortedBag is the non-modifiable equivalent interface toMutableSortedBag.interfaceinterfaceSortedBag<T>An Iterable whose elements are sorted by some comparator or their natural ordering and may contain duplicate entries. -
Uses of ReversibleIterable in org.eclipse.collections.api.list
Subinterfaces of ReversibleIterable in org.eclipse.collections.api.listModifier and TypeInterfaceDescriptioninterfaceA FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.interfaceImmutableList is the non-modifiable equivalent interface toMutableList.interfaceListIterable<T>An iterable whose items are ordered and may be accessed directly by index.interfaceA MultiReaderList provides thread-safe iteration for a list through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableList<T>A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol. -
Uses of ReversibleIterable in org.eclipse.collections.api.map
Subinterfaces of ReversibleIterable in org.eclipse.collections.api.mapModifier and TypeInterfaceDescriptioninterfaceImmutableOrderedMap<K,V> interfaceMutableOrderedMap<K,V> interfaceOrderedMap<K,V> A map whose keys are ordered but not necessarily sorted, for example a linked hash map. -
Uses of ReversibleIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of ReversibleIterable in org.eclipse.collections.api.map.sortedModifier and TypeInterfaceDescriptioninterfaceImmutableSortedMap<K,V> An ImmutableSortedMap is different from a JCF SortedMap because it has no mutating methods.interfaceMutableSortedMap<K,V> A MutableSortedMap is similar to a JCF Map but adds additional useful internal iterator methods.interfaceSortedMapIterable<K,V> An iterable Map whose elements are sorted. -
Uses of ReversibleIterable in org.eclipse.collections.api.multimap.ordered
Methods in org.eclipse.collections.api.multimap.ordered that return ReversibleIterable -
Uses of ReversibleIterable in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered that return ReversibleIterableModifier and TypeMethodDescription<V> ReversibleIterable<V> <V> ReversibleIterable<V> ReversibleIterable.collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) <P,V> ReversibleIterable <V> ReversibleIterable.collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) default <V> ReversibleIterable<V> ReversibleIterable.collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function) ReversibleIterable.distinct()ReversibleIterable.drop(int count) Returns an iterable after skipping the firstcountelements or an empty iterable if thecountis greater than the length of the iterable.Returns the final elements that do not satisfy the Predicate.<V> ReversibleIterable<V> ReversibleIterable.flatCollect(Function<? super T, ? extends Iterable<V>> function) default <P,V> ReversibleIterable <V> ReversibleIterable.flatCollectWith(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter) <P> ReversibleIterable<T> ReversibleIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> ReversibleIterable<S> ReversibleIterable.selectInstancesOf(Class<S> clazz) <P> ReversibleIterable<T> ReversibleIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) ReversibleIterable.take(int count) Returns the firstcountelements of the iterable or all the elements in the iterable ifcountis greater than the length of the iterable.Returns the initial elements that satisfy the Predicate.ReversibleIterable.toReversed()Returns a new ReversibleIterable in reverse order.<S> ReversibleIterable<Pair<T, S>> ReversibleIterable.zipWithIndex() -
Uses of ReversibleIterable in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive that return ReversibleIterableModifier and TypeMethodDescription<V> ReversibleIterable<V> ReversibleBooleanIterable.collect(BooleanToObjectFunction<? extends V> function) <V> ReversibleIterable<V> ReversibleByteIterable.collect(ByteToObjectFunction<? extends V> function) <V> ReversibleIterable<V> ReversibleCharIterable.collect(CharToObjectFunction<? extends V> function) <V> ReversibleIterable<V> ReversibleDoubleIterable.collect(DoubleToObjectFunction<? extends V> function) <V> ReversibleIterable<V> ReversibleFloatIterable.collect(FloatToObjectFunction<? extends V> function) <V> ReversibleIterable<V> ReversibleIntIterable.collect(IntToObjectFunction<? extends V> function) <V> ReversibleIterable<V> ReversibleLongIterable.collect(LongToObjectFunction<? extends V> function) <V> ReversibleIterable<V> ReversibleShortIterable.collect(ShortToObjectFunction<? extends V> function) default <V> ReversibleIterable<V> ReversibleBooleanIterable.collectWithIndex(BooleanIntToObjectFunction<? extends V> function) Returns a new ReversibleIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ReversibleIterable<V> ReversibleByteIterable.collectWithIndex(ByteIntToObjectFunction<? extends V> function) Returns a new ReversibleIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ReversibleIterable<V> ReversibleCharIterable.collectWithIndex(CharIntToObjectFunction<? extends V> function) Returns a new ReversibleIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ReversibleIterable<V> ReversibleDoubleIterable.collectWithIndex(DoubleIntToObjectFunction<? extends V> function) Returns a new ReversibleIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ReversibleIterable<V> ReversibleFloatIterable.collectWithIndex(FloatIntToObjectFunction<? extends V> function) Returns a new ReversibleIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ReversibleIterable<V> ReversibleIntIterable.collectWithIndex(IntIntToObjectFunction<? extends V> function) Returns a new ReversibleIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ReversibleIterable<V> ReversibleLongIterable.collectWithIndex(LongIntToObjectFunction<? extends V> function) Returns a new ReversibleIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ReversibleIterable<V> ReversibleShortIterable.collectWithIndex(ShortIntToObjectFunction<? extends V> function) Returns a new ReversibleIterable using results obtained by applying the specified function to each element and its corresponding index. -
Uses of ReversibleIterable in org.eclipse.collections.api.partition.ordered
Methods in org.eclipse.collections.api.partition.ordered that return ReversibleIterableModifier and TypeMethodDescriptionPartitionReversibleIterable.getRejected()PartitionReversibleIterable.getSelected() -
Uses of ReversibleIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of ReversibleIterable in org.eclipse.collections.api.set.sortedModifier and TypeInterfaceDescriptioninterfaceImmutableSortedSet is the non-modifiable equivalent interface toMutableSortedSet.interfaceA MutableSortedSet is an implementation of a JCF SortedSet which provides methods matching the Smalltalk Collection protocol.interfaceAn iterable whose items are unique and sorted by some comparator or their natural ordering. -
Uses of ReversibleIterable in org.eclipse.collections.impl.bag.sorted.mutable
Classes in org.eclipse.collections.impl.bag.sorted.mutable that implement ReversibleIterableModifier and TypeClassDescriptionclassclassA synchronized view of aMutableSortedBag.classTreeBag<T>A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.classAn unmodifiable view of a SortedBag. -
Uses of ReversibleIterable in org.eclipse.collections.impl.list.fixed
Classes in org.eclipse.collections.impl.list.fixed that implement ReversibleIterableModifier and TypeClassDescriptionclassclassfinal classArrayAdapter<T>This class provides a MutableList wrapper around an array. -
Uses of ReversibleIterable in org.eclipse.collections.impl.list.mutable
Classes in org.eclipse.collections.impl.list.mutable that implement ReversibleIterableModifier and TypeClassDescriptionclassclassprotected static classfinal classThis class provides a MutableList wrapper around a JDK Collections ArrayList instance.final classCompositeFastList behaves like a list, but is composed of at least one list.classFastList<T>FastList is an attempt to provide the same functionality as ArrayList without the support for concurrent modification exceptions.final classListAdapter<T>This class provides a MutableList wrapper around a JDK Collections List interface instance.final classMultiReadFastList provides a thread-safe wrapper around a FastList, using a ReentrantReadWriteLock.final classThis class provides a MutableList wrapper around a JDK Collections List interface instance.classA synchronized view of aMutableList.classAn unmodifiable view of a list. -
Uses of ReversibleIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement ReversibleIterableModifier and TypeClassDescriptionclassA boxed view of aMutableBooleanList.classA boxed view of aMutableByteList.classA boxed view of aMutableCharList.classA boxed view of aMutableDoubleList.classA boxed view of aMutableFloatList.classA boxed view of aMutableIntList.classA boxed view of aMutableLongList.classA boxed view of aMutableShortList. -
Uses of ReversibleIterable in org.eclipse.collections.impl.map.ordered.immutable
Classes in org.eclipse.collections.impl.map.ordered.immutable that implement ReversibleIterable -
Uses of ReversibleIterable in org.eclipse.collections.impl.map.ordered.mutable
Classes in org.eclipse.collections.impl.map.ordered.mutable that implement ReversibleIterableModifier and TypeClassDescriptionclassOrderedMapAdapter<K,V> classAn unmodifiable view of a map.Methods in org.eclipse.collections.impl.map.ordered.mutable that return ReversibleIterableModifier and TypeMethodDescription<V1> ReversibleIterable<V1> UnmodifiableMutableOrderedMap.collectWithIndex(ObjectIntToObjectFunction<? super V, ? extends V1> function) -
Uses of ReversibleIterable in org.eclipse.collections.impl.map.sorted.immutable
Classes in org.eclipse.collections.impl.map.sorted.immutable that implement ReversibleIterable -
Uses of ReversibleIterable in org.eclipse.collections.impl.map.sorted.mutable
Classes in org.eclipse.collections.impl.map.sorted.mutable that implement ReversibleIterableModifier and TypeClassDescriptionclassclassSortedMapAdapter<K,V> This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.classA synchronized view of a SortedMap.classTreeSortedMap<K,V> classUnmodifiableTreeMap<K,V> An unmodifiable view of a map. -
Uses of ReversibleIterable in org.eclipse.collections.impl.set.sorted.mutable
Classes in org.eclipse.collections.impl.set.sorted.mutable that implement ReversibleIterableModifier and TypeClassDescriptionfinal classThis class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.classA synchronized view of aMutableSortedSet.classclassAn unmodifiable view of a SortedSet.