Uses of Interface
org.eclipse.collections.api.map.sorted.SortedMapIterable
| Package | Description |
|---|---|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.impl.map.sorted.immutable |
This package contains implementations of the
MutableSortedMap interface. |
| org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
| org.eclipse.collections.impl.test |
This package contains
SerializeTestHelper and Verify classes. |
| org.eclipse.collections.impl.utility |
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 Modifier and Type Method Description SortedMapIterable<T,Integer>SortedBag. toMapOfItemToCount() -
Uses of SortedMapIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of SortedMapIterable in org.eclipse.collections.api.map.sorted Modifier and Type Interface Description interfaceImmutableSortedMap<K,V>An ImmutableSortedMap is different than a JCF SortedMap in that it has no mutating methods, but it shares the read-only protocol of a SortedMap.interfaceMutableSortedMap<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 SortedMapIterable Modifier and Type Method Description <R> SortedMapIterable<K,R>SortedMapIterable. collectValues(Function2<? super K,? super V,? extends R> function)SortedMapIterable<K,V>SortedMapIterable. drop(int count)SortedMapIterable<K,V>SortedMapIterable. dropWhile(Predicate<? super V> predicate)SortedMapIterable<K,V>SortedMapIterable. reject(Predicate2<? super K,? super V> predicate)SortedMapIterable<K,V>SortedMapIterable. select(Predicate2<? super K,? super V> predicate)SortedMapIterable<K,V>SortedMapIterable. take(int count)SortedMapIterable<K,V>SortedMapIterable. takeWhile(Predicate<? super V> predicate)SortedMapIterable<K,V>SortedMapIterable. tap(Procedure<? super V> procedure)SortedMapIterable<K,V>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 Modifier and Type Class Description classAbstractImmutableSortedMap<K,V>classImmutableTreeMap<K,V> -
Uses of SortedMapIterable in org.eclipse.collections.impl.map.sorted.mutable
Classes in org.eclipse.collections.impl.map.sorted.mutable that implement SortedMapIterable Modifier and Type Class Description classAbstractMutableSortedMap<K,V>classSortedMapAdapter<K,V>This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.classSynchronizedSortedMap<K,V>A synchronized view of a SortedMap.classTreeSortedMap<K,V>classUnmodifiableTreeMap<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 SortedMapIterable Modifier and Type Method Description static voidVerify. assertSortedMapsEqual(String mapName, SortedMapIterable<?,?> expectedMap, SortedMapIterable<?,?> actualMap)static voidVerify. 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 SortedMapIterable Modifier and Type Method Description static <K, V> MutableSortedSetMultimap<V,K>MapIterate. flip(SortedMapIterable<K,V> iMap)