Uses of Interface
org.eclipse.collections.api.map.sorted.SortedMapIterable
Packages that use SortedMapIterable
Package
Description
This package contains interfaces for SortedBag API.
This package contains mutable and immutable sorted map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the
MutableSortedMap
interface.This package contains
SerializeTestHelper
and Verify
classes.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
-
Uses of SortedMapIterable in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return SortedMapIterable -
Uses of SortedMapIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of SortedMapIterable in org.eclipse.collections.api.map.sortedModifier and TypeInterfaceDescriptioninterface
ImmutableSortedMap<K,
V> An ImmutableSortedMap is different from a JCF SortedMap because it has no mutating methods.interface
MutableSortedMap<K,
V> A MutableSortedMap is similar to a JCF Map but adds additional useful internal iterator methods.Methods in org.eclipse.collections.api.map.sorted that return SortedMapIterableModifier and TypeMethodDescription<R> SortedMapIterable<K,
R> SortedMapIterable.collectValues
(Function2<? super K, ? super V, ? extends R> function) SortedMapIterable.drop
(int count) SortedMapIterable.reject
(Predicate2<? super K, ? super V> predicate) SortedMapIterable.select
(Predicate2<? super K, ? super V> predicate) SortedMapIterable.take
(int count) SortedMapIterable.toReversed()
-
Uses of SortedMapIterable in org.eclipse.collections.impl.map.sorted.immutable
Classes in org.eclipse.collections.impl.map.sorted.immutable that implement SortedMapIterable -
Uses of SortedMapIterable in org.eclipse.collections.impl.map.sorted.mutable
Classes in org.eclipse.collections.impl.map.sorted.mutable that implement SortedMapIterableModifier and TypeClassDescriptionclass
class
SortedMapAdapter<K,
V> This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.class
A synchronized view of a SortedMap.class
TreeSortedMap<K,
V> class
UnmodifiableTreeMap<K,
V> An unmodifiable view of a map. -
Uses of SortedMapIterable in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type SortedMapIterableModifier and TypeMethodDescriptionstatic void
Verify.assertSortedMapsEqual
(String mapName, SortedMapIterable<?, ?> expectedMap, SortedMapIterable<?, ?> actualMap) static void
Verify.assertSortedMapsEqual
(SortedMapIterable<?, ?> expectedMap, SortedMapIterable<?, ?> actualMap) -
Uses of SortedMapIterable in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type SortedMapIterableModifier and TypeMethodDescriptionstatic <K,
V> MutableSortedSetMultimap<V, K> MapIterate.flip
(SortedMapIterable<K, V> iMap)