Uses of Interface
org.eclipse.collections.api.ordered.OrderedIterable
-
Packages that use OrderedIterable Package Description 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.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.multimap.ordered org.eclipse.collections.api.ordered org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.partition.ordered 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. -
-
Uses of OrderedIterable in org.eclipse.collections.api.bag.sorted
Subinterfaces of OrderedIterable in org.eclipse.collections.api.bag.sorted Modifier and Type Interface Description interfaceImmutableSortedBag<T>ImmutableSortedBag is the non-modifiable equivalent interface toMutableSortedBag.interfaceMutableSortedBag<T>interfaceSortedBag<T>An Iterable whose elements are sorted by some comparator or their natural ordering and may contain duplicate entries. -
Uses of OrderedIterable in org.eclipse.collections.api.list
Subinterfaces of OrderedIterable in org.eclipse.collections.api.list Modifier and Type Interface Description interfaceFixedSizeList<T>A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.interfaceImmutableList<T>ImmutableList is the non-modifiable equivalent interface toMutableList.interfaceListIterable<T>An iterable whose items are ordered and may be accessed directly by index.interfaceMultiReaderList<T>A 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 OrderedIterable in org.eclipse.collections.api.map
Subinterfaces of OrderedIterable in org.eclipse.collections.api.map Modifier and Type Interface Description interfaceImmutableOrderedMap<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 OrderedIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of OrderedIterable in org.eclipse.collections.api.map.sorted Modifier and Type Interface Description interfaceImmutableSortedMap<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 OrderedIterable in org.eclipse.collections.api.multimap.ordered
Methods in org.eclipse.collections.api.multimap.ordered that return OrderedIterable Modifier and Type Method Description OrderedIterable<V>OrderedIterableMultimap. get(K key) -
Uses of OrderedIterable in org.eclipse.collections.api.ordered
Subinterfaces of OrderedIterable in org.eclipse.collections.api.ordered Modifier and Type Interface Description interfaceReversibleIterable<T>A ReversibleIterable is an ordered iterable that you can iterate over forwards or backwards.interfaceSortedIterable<T>A SortedIterable is an ordered iterable where the elements are stored in sorted order defined by a non-strict partial order relation.Methods in org.eclipse.collections.api.ordered that return OrderedIterable Modifier and Type Method Description <V> OrderedIterable<V>OrderedIterable. collect(Function<? super T,? extends V> function)<V> OrderedIterable<V>OrderedIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<P,V>
OrderedIterable<V>OrderedIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)default <V> OrderedIterable<V>OrderedIterable. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index.OrderedIterable<T>OrderedIterable. distinct()Returns a newOrderedIterablecontaining the distinct elements in this iterable.OrderedIterable<T>OrderedIterable. dropWhile(Predicate<? super T> predicate)Returns the final elements that do not satisfy the Predicate.<V> OrderedIterable<V>OrderedIterable. flatCollect(Function<? super T,? extends Iterable<V>> function)default <P,V>
OrderedIterable<V>OrderedIterable. flatCollectWith(Function2<? super T,? super P,? extends Iterable<V>> function, P parameter)OrderedIterable<T>OrderedIterable. reject(Predicate<? super T> predicate)<P> OrderedIterable<T>OrderedIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)OrderedIterable<T>OrderedIterable. select(Predicate<? super T> predicate)<S> OrderedIterable<S>OrderedIterable. selectInstancesOf(Class<S> clazz)<P> OrderedIterable<T>OrderedIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)OrderedIterable<T>OrderedIterable. takeWhile(Predicate<? super T> predicate)Returns the initial elements that satisfy the Predicate.OrderedIterable<T>OrderedIterable. tap(Procedure<? super T> procedure)<S> OrderedIterable<Pair<T,S>>OrderedIterable. zip(Iterable<S> that)Returns aOrderedIterableformed from thisOrderedIterableand anotherIterableby combining corresponding elements in pairs.OrderedIterable<Pair<T,Integer>>OrderedIterable. zipWithIndex()Methods in org.eclipse.collections.api.ordered with parameters of type OrderedIterable Modifier and Type Method Description <S> booleanOrderedIterable. corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)Returns true if both OrderedIterables have the same length andpredicatereturns true for all corresponding elements e1 of thisOrderedIterableand e2 ofother. -
Uses of OrderedIterable in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive that return OrderedIterable Modifier and Type Method Description <V> OrderedIterable<V>OrderedBooleanIterable. collect(BooleanToObjectFunction<? extends V> function)<V> OrderedIterable<V>OrderedByteIterable. collect(ByteToObjectFunction<? extends V> function)<V> OrderedIterable<V>OrderedCharIterable. collect(CharToObjectFunction<? extends V> function)<V> OrderedIterable<V>OrderedDoubleIterable. collect(DoubleToObjectFunction<? extends V> function)<V> OrderedIterable<V>OrderedFloatIterable. collect(FloatToObjectFunction<? extends V> function)<V> OrderedIterable<V>OrderedIntIterable. collect(IntToObjectFunction<? extends V> function)<V> OrderedIterable<V>OrderedLongIterable. collect(LongToObjectFunction<? extends V> function)<V> OrderedIterable<V>OrderedShortIterable. collect(ShortToObjectFunction<? extends V> function)default <V> OrderedIterable<V>OrderedBooleanIterable. collectWithIndex(BooleanIntToObjectFunction<? extends V> function)Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> OrderedIterable<V>OrderedByteIterable. collectWithIndex(ByteIntToObjectFunction<? extends V> function)Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> OrderedIterable<V>OrderedCharIterable. collectWithIndex(CharIntToObjectFunction<? extends V> function)Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> OrderedIterable<V>OrderedDoubleIterable. collectWithIndex(DoubleIntToObjectFunction<? extends V> function)Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> OrderedIterable<V>OrderedFloatIterable. collectWithIndex(FloatIntToObjectFunction<? extends V> function)Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> OrderedIterable<V>OrderedIntIterable. collectWithIndex(IntIntToObjectFunction<? extends V> function)Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> OrderedIterable<V>OrderedLongIterable. collectWithIndex(LongIntToObjectFunction<? extends V> function)Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> OrderedIterable<V>OrderedShortIterable. collectWithIndex(ShortIntToObjectFunction<? extends V> function)Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index. -
Uses of OrderedIterable in org.eclipse.collections.api.partition.ordered
Methods in org.eclipse.collections.api.partition.ordered that return OrderedIterable Modifier and Type Method Description OrderedIterable<T>PartitionOrderedIterable. getRejected()OrderedIterable<T>PartitionOrderedIterable. getSelected() -
Uses of OrderedIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of OrderedIterable in org.eclipse.collections.api.set.sorted Modifier and Type Interface Description interfaceImmutableSortedSet<T>ImmutableSortedSet is the non-modifiable equivalent interface toMutableSortedSet.interfaceMutableSortedSet<T>A MutableSortedSet is an implementation of a JCF SortedSet which provides methods matching the Smalltalk Collection protocol.interfaceSortedSetIterable<T>An iterable whose items are unique and sorted by some comparator or their natural ordering. -
Uses of OrderedIterable in org.eclipse.collections.api.stack
Subinterfaces of OrderedIterable in org.eclipse.collections.api.stack Modifier and Type Interface Description interfaceImmutableStack<T>interfaceMutableStack<T>interfaceStackIterable<T>StackIterable is a last-in-first-out data structure.
-