public abstract class AbstractImmutableSortedMap<K,V> extends AbstractMapIterable<K,V> implements ImmutableSortedMap<K,V>, SortedMap<K,V>
| Constructor and Description |
|---|
AbstractImmutableSortedMap() |
| Modifier and Type | Method and Description |
|---|---|
<K1,V1,V2> ImmutableMap<K1,V2> |
aggregateBy(Function<? super K,? extends K1> keyFunction,
Function<? super V,? extends V1> valueFunction,
Function0<? extends V2> zeroValueFactory,
Function2<? super V2,? super V1,? extends V2> nonMutatingAggregator) |
LazyIterable<V> |
asReversed() |
SortedMap<K,V> |
castToMap() |
SortedMap<K,V> |
castToSortedMap() |
void |
clear() |
<R> ImmutableList<R> |
collect(Function<? super V,? extends R> function) |
<K2,V2> ImmutableMap<K2,V2> |
collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
ImmutableBooleanList |
collectBoolean(BooleanFunction<? super V> booleanFunction) |
ImmutableByteList |
collectByte(ByteFunction<? super V> byteFunction) |
ImmutableCharList |
collectChar(CharFunction<? super V> charFunction) |
ImmutableDoubleList |
collectDouble(DoubleFunction<? super V> doubleFunction) |
ImmutableFloatList |
collectFloat(FloatFunction<? super V> floatFunction) |
<R> ImmutableList<R> |
collectIf(Predicate<? super V> predicate,
Function<? super V,? extends R> function) |
ImmutableIntList |
collectInt(IntFunction<? super V> intFunction) |
ImmutableLongList |
collectLong(LongFunction<? super V> longFunction) |
ImmutableShortList |
collectShort(ShortFunction<? super V> shortFunction) |
<R> ImmutableSortedMap<K,R> |
collectValues(Function2<? super K,? super V,? extends R> function) |
<P,VV> ImmutableList<VV> |
collectWith(Function2<? super V,? super P,? extends VV> function,
P parameter) |
<S> boolean |
corresponds(OrderedIterable<S> other,
Predicate2<? super V,? super S> predicate) |
<V1> ImmutableBag<V1> |
countBy(Function<? super V,? extends V1> function) |
<V1> ImmutableBag<V1> |
countByEach(Function<? super V,? extends Iterable<V1>> function) |
<V1,P> ImmutableBag<V1> |
countByWith(Function2<? super V,? super P,? extends V1> function,
P parameter) |
Pair<K,V> |
detect(Predicate2<? super K,? super V> predicate) |
int |
detectIndex(Predicate<? super V> predicate) |
int |
detectLastIndex(Predicate<? super V> predicate) |
Optional<Pair<K,V>> |
detectOptional(Predicate2<? super K,? super V> predicate) |
ImmutableList<V> |
distinct() |
ImmutableSortedMap<K,V> |
dropWhile(Predicate<? super V> predicate) |
<R> ImmutableList<R> |
flatCollect(Function<? super V,? extends Iterable<R>> function) |
ImmutableSortedSetMultimap<V,K> |
flip() |
void |
forEach(int startIndex,
int endIndex,
Procedure<? super V> procedure) |
void |
forEachWithIndex(int fromIndex,
int toIndex,
ObjectIntProcedure<? super V> objectIntProcedure) |
<R> ImmutableListMultimap<R,V> |
groupBy(Function<? super V,? extends R> function) |
<R> ImmutableListMultimap<R,V> |
groupByEach(Function<? super V,? extends Iterable<R>> function) |
<V1> ImmutableMap<V1,V> |
groupByUniqueKey(Function<? super V,? extends V1> function) |
SortedMap<K,V> |
headMap(K toKey) |
int |
indexOf(Object object) |
Iterator<V> |
iterator() |
ImmutableSortedMap<K,V> |
newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
ImmutableSortedMap<K,V> |
newWithAllKeyValues(Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
ImmutableSortedMap<K,V> |
newWithKeyValue(K key,
V value) |
ImmutableSortedMap<K,V> |
newWithMap(Map<? extends K,? extends V> map) |
ImmutableSortedMap<K,V> |
newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable) |
ImmutableSortedMap<K,V> |
newWithoutAllKeys(Iterable<? extends K> keys) |
ImmutableSortedMap<K,V> |
newWithoutKey(K key) |
PartitionImmutableList<V> |
partition(Predicate<? super V> predicate) |
PartitionImmutableList<V> |
partitionWhile(Predicate<? super V> predicate) |
<P> PartitionImmutableList<V> |
partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> map) |
ImmutableList<V> |
reject(Predicate<? super V> predicate) |
ImmutableSortedMap<K,V> |
reject(Predicate2<? super K,? super V> predicate) |
<P> ImmutableList<V> |
rejectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
V |
remove(Object key) |
ImmutableList<V> |
select(Predicate<? super V> predicate) |
ImmutableSortedMap<K,V> |
select(Predicate2<? super K,? super V> predicate) |
<S> ImmutableList<S> |
selectInstancesOf(Class<S> clazz) |
<P> ImmutableList<V> |
selectWith(Predicate2<? super V,? super P> predicate,
P parameter) |
SortedMap<K,V> |
subMap(K fromKey,
K toKey) |
<V1> ImmutableObjectDoubleMap<V1> |
sumByDouble(Function<? super V,? extends V1> groupBy,
DoubleFunction<? super V> function) |
<V1> ImmutableObjectDoubleMap<V1> |
sumByFloat(Function<? super V,? extends V1> groupBy,
FloatFunction<? super V> function) |
<V1> ImmutableObjectLongMap<V1> |
sumByInt(Function<? super V,? extends V1> groupBy,
IntFunction<? super V> function) |
<V1> ImmutableObjectLongMap<V1> |
sumByLong(Function<? super V,? extends V1> groupBy,
LongFunction<? super V> function) |
SortedMap<K,V> |
tailMap(K fromKey) |
ImmutableSortedMap<K,V> |
takeWhile(Predicate<? super V> predicate) |
ImmutableSortedMap<K,V> |
tap(Procedure<? super V> procedure) |
ImmutableSortedMap<K,V> |
toImmutable() |
ImmutableSortedMap<K,V> |
toReversed() |
MutableSortedMap<K,V> |
toSortedMap() |
MutableStack<V> |
toStack() |
<S> ImmutableList<Pair<V,S>> |
zip(Iterable<S> that) |
ImmutableList<Pair<V,Integer>> |
zipWithIndex() |
allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, asLazy, chunk, contains, detect, detectIfNone, detectOptional, detectWith, detectWithIfNone, detectWithOptional, each, forEachKey, forEachValue, forEachWith, forEachWithIndex, getFirst, getIfAbsent, getIfAbsentValue, getIfAbsentWith, getLast, getOnly, getOrDefault, ifPresentApply, noneSatisfy, noneSatisfyWith, toArray, toArrayappendString, appendString, collect, collectIf, collectWith, containsAll, containsAllArguments, containsAllIterable, count, countWith, flatCollect, forEach, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, into, isEmpty, max, max, maxBy, min, min, minBy, reject, rejectWith, select, selectWith, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toBag, toBiMap, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedListBy, toSortedMap, toSortedMap, toSortedMapBy, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexequals, getClass, hashCode, notify, notifyAll, wait, wait, waitaggregateBy, aggregateInPlaceBy, collectWithIndex, flatCollectWithcomparator, drop, takereverseForEach, reverseForEachWithIndexcollectWithIndex, forEachWithIndex, getFirst, getFirstOptional, getLast, getLastOptional, max, min, rejectWithIndex, selectWithIndex, zip, zipWithIndexaggregateBy, allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, containsAny, containsAnyIterable, containsBy, containsNone, containsNoneIterable, count, countBy, countByEach, countByWith, countWith, detect, detectIfNone, detectOptional, detectWith, detectWithIfNone, detectWithOptional, each, flatCollect, flatCollectBoolean, flatCollectByte, flatCollectChar, flatCollectDouble, flatCollectFloat, flatCollectInt, flatCollectLong, flatCollectShort, flatCollectWith, forEach, getAny, getOnly, groupBy, groupByAndCollect, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, into, isEmpty, makeString, makeString, makeString, makeString, max, maxBy, maxByOptional, maxOptional, maxOptional, min, minBy, minByOptional, minOptional, minOptional, noneSatisfy, noneSatisfyWith, notEmpty, reduce, reduceInPlace, reduceInPlace, reject, rejectWith, select, selectWith, size, summarizeDouble, summarizeFloat, summarizeInt, summarizeLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toBiMap, toImmutableBag, toImmutableBiMap, toImmutableList, toImmutableMap, toImmutableSet, toImmutableSortedBag, toImmutableSortedBag, toImmutableSortedBagBy, toImmutableSortedList, toImmutableSortedList, toImmutableSortedListBy, toImmutableSortedSet, toImmutableSortedSet, toImmutableSortedSetBy, toList, toMap, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedMapBy, toSortedSet, toSortedSet, toSortedSetByforEach, forEachWithflipUniqueValuescontainsKey, containsValue, equals, forEachKey, forEachKeyValue, forEachValue, get, getIfAbsent, getIfAbsentValue, getIfAbsentWith, getOrDefault, hashCode, ifPresentApply, injectIntoKeyValue, keysView, keyValuesView, parallelStream, spliterator, stream, toString, valuesViewcomparator, entrySet, firstKey, keySet, lastKey, valuescompute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, putIfAbsent, remove, replace, replace, replaceAll, sizepublic SortedMap<K,V> castToMap()
castToMap in interface ImmutableMapIterable<K,V>castToMap in interface ImmutableSortedMap<K,V>public SortedMap<K,V> castToSortedMap()
castToSortedMap in interface ImmutableSortedMap<K,V>public MutableSortedMap<K,V> toSortedMap()
toSortedMap in interface ImmutableSortedMap<K,V>public ImmutableSortedMap<K,V> toImmutable()
toImmutable in interface MapIterable<K,V>toImmutable in interface SortedMapIterable<K,V>public ImmutableSortedMap<K,V> newWithKeyValue(K key, V value)
newWithKeyValue in interface ImmutableMapIterable<K,V>newWithKeyValue in interface ImmutableSortedMap<K,V>public ImmutableSortedMap<K,V> newWithAllKeyValues(Iterable<? extends Pair<? extends K,? extends V>> keyValues)
newWithAllKeyValues in interface ImmutableMapIterable<K,V>newWithAllKeyValues in interface ImmutableSortedMap<K,V>public ImmutableSortedMap<K,V> newWithMap(Map<? extends K,? extends V> map)
newWithMap in interface ImmutableMapIterable<K,V>newWithMap in interface ImmutableSortedMap<K,V>public ImmutableSortedMap<K,V> newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable)
newWithMapIterable in interface ImmutableMapIterable<K,V>newWithMapIterable in interface ImmutableSortedMap<K,V>public ImmutableSortedMap<K,V> newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs)
newWithAllKeyValueArguments in interface ImmutableMapIterable<K,V>newWithAllKeyValueArguments in interface ImmutableSortedMap<K,V>public ImmutableSortedMap<K,V> newWithoutKey(K key)
newWithoutKey in interface ImmutableMapIterable<K,V>newWithoutKey in interface ImmutableSortedMap<K,V>public ImmutableSortedMap<K,V> newWithoutAllKeys(Iterable<? extends K> keys)
newWithoutAllKeys in interface ImmutableMapIterable<K,V>newWithoutAllKeys in interface ImmutableSortedMap<K,V>public ImmutableSortedSetMultimap<V,K> flip()
flip in interface ImmutableMapIterable<K,V>flip in interface MapIterable<K,V>flip in interface ImmutableSortedMap<K,V>flip in interface SortedMapIterable<K,V>public ImmutableSortedMap<K,V> tap(Procedure<? super V> procedure)
tap in interface ImmutableMapIterable<K,V>tap in interface MapIterable<K,V>tap in interface ImmutableSortedMap<K,V>tap in interface SortedMapIterable<K,V>tap in interface OrderedIterable<V>tap in interface ReversibleIterable<V>tap in interface RichIterable<V>public ImmutableList<V> select(Predicate<? super V> predicate)
select in interface ImmutableMapIterable<K,V>select in interface ImmutableSortedMap<K,V>select in interface SortedMapIterable<K,V>select in interface OrderedIterable<V>select in interface ReversibleIterable<V>select in interface RichIterable<V>public <P> ImmutableList<V> selectWith(Predicate2<? super V,? super P> predicate, P parameter)
selectWith in interface ImmutableMapIterable<K,V>selectWith in interface ImmutableSortedMap<K,V>selectWith in interface SortedMapIterable<K,V>selectWith in interface OrderedIterable<V>selectWith in interface ReversibleIterable<V>selectWith in interface RichIterable<V>public ImmutableSortedMap<K,V> select(Predicate2<? super K,? super V> predicate)
select in interface ImmutableMapIterable<K,V>select in interface MapIterable<K,V>select in interface ImmutableSortedMap<K,V>select in interface SortedMapIterable<K,V>public ImmutableList<V> reject(Predicate<? super V> predicate)
reject in interface ImmutableMapIterable<K,V>reject in interface ImmutableSortedMap<K,V>reject in interface SortedMapIterable<K,V>reject in interface OrderedIterable<V>reject in interface ReversibleIterable<V>reject in interface RichIterable<V>public <P> ImmutableList<V> rejectWith(Predicate2<? super V,? super P> predicate, P parameter)
rejectWith in interface ImmutableMapIterable<K,V>rejectWith in interface ImmutableSortedMap<K,V>rejectWith in interface SortedMapIterable<K,V>rejectWith in interface OrderedIterable<V>rejectWith in interface ReversibleIterable<V>rejectWith in interface RichIterable<V>public ImmutableSortedMap<K,V> reject(Predicate2<? super K,? super V> predicate)
reject in interface ImmutableMapIterable<K,V>reject in interface MapIterable<K,V>reject in interface ImmutableSortedMap<K,V>reject in interface SortedMapIterable<K,V>public PartitionImmutableList<V> partition(Predicate<? super V> predicate)
partition in interface ImmutableMapIterable<K,V>partition in interface ImmutableSortedMap<K,V>partition in interface SortedMapIterable<K,V>partition in interface OrderedIterable<V>partition in interface ReversibleIterable<V>partition in interface RichIterable<V>public <P> PartitionImmutableList<V> partitionWith(Predicate2<? super V,? super P> predicate, P parameter)
partitionWith in interface ImmutableSortedMap<K,V>partitionWith in interface SortedMapIterable<K,V>partitionWith in interface OrderedIterable<V>partitionWith in interface ReversibleIterable<V>partitionWith in interface RichIterable<V>public <S> ImmutableList<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface ImmutableMapIterable<K,V>selectInstancesOf in interface ImmutableSortedMap<K,V>selectInstancesOf in interface SortedMapIterable<K,V>selectInstancesOf in interface OrderedIterable<V>selectInstancesOf in interface ReversibleIterable<V>selectInstancesOf in interface RichIterable<V>public <R> ImmutableList<R> collect(Function<? super V,? extends R> function)
collect in interface ImmutableSortedMap<K,V>collect in interface SortedMapIterable<K,V>collect in interface OrderedIterable<V>collect in interface ReversibleIterable<V>collect in interface RichIterable<V>public ImmutableBooleanList collectBoolean(BooleanFunction<? super V> booleanFunction)
collectBoolean in interface ImmutableSortedMap<K,V>collectBoolean in interface SortedMapIterable<K,V>collectBoolean in interface OrderedIterable<V>collectBoolean in interface ReversibleIterable<V>collectBoolean in interface RichIterable<V>public ImmutableByteList collectByte(ByteFunction<? super V> byteFunction)
collectByte in interface ImmutableSortedMap<K,V>collectByte in interface SortedMapIterable<K,V>collectByte in interface OrderedIterable<V>collectByte in interface ReversibleIterable<V>collectByte in interface RichIterable<V>public ImmutableCharList collectChar(CharFunction<? super V> charFunction)
collectChar in interface ImmutableSortedMap<K,V>collectChar in interface SortedMapIterable<K,V>collectChar in interface OrderedIterable<V>collectChar in interface ReversibleIterable<V>collectChar in interface RichIterable<V>public ImmutableDoubleList collectDouble(DoubleFunction<? super V> doubleFunction)
collectDouble in interface ImmutableSortedMap<K,V>collectDouble in interface SortedMapIterable<K,V>collectDouble in interface OrderedIterable<V>collectDouble in interface ReversibleIterable<V>collectDouble in interface RichIterable<V>public ImmutableFloatList collectFloat(FloatFunction<? super V> floatFunction)
collectFloat in interface ImmutableSortedMap<K,V>collectFloat in interface SortedMapIterable<K,V>collectFloat in interface OrderedIterable<V>collectFloat in interface ReversibleIterable<V>collectFloat in interface RichIterable<V>public ImmutableIntList collectInt(IntFunction<? super V> intFunction)
collectInt in interface ImmutableSortedMap<K,V>collectInt in interface SortedMapIterable<K,V>collectInt in interface OrderedIterable<V>collectInt in interface ReversibleIterable<V>collectInt in interface RichIterable<V>public ImmutableLongList collectLong(LongFunction<? super V> longFunction)
collectLong in interface ImmutableSortedMap<K,V>collectLong in interface SortedMapIterable<K,V>collectLong in interface OrderedIterable<V>collectLong in interface ReversibleIterable<V>collectLong in interface RichIterable<V>public ImmutableShortList collectShort(ShortFunction<? super V> shortFunction)
collectShort in interface ImmutableSortedMap<K,V>collectShort in interface SortedMapIterable<K,V>collectShort in interface OrderedIterable<V>collectShort in interface ReversibleIterable<V>collectShort in interface RichIterable<V>public <K2,V2> ImmutableMap<K2,V2> collect(Function2<? super K,? super V,Pair<K2,V2>> function)
collect in interface ImmutableMapIterable<K,V>collect in interface MapIterable<K,V>collect in interface ImmutableSortedMap<K,V>collect in interface SortedMapIterable<K,V>public <P,VV> ImmutableList<VV> collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)
collectWith in interface ImmutableSortedMap<K,V>collectWith in interface SortedMapIterable<K,V>collectWith in interface OrderedIterable<V>collectWith in interface ReversibleIterable<V>collectWith in interface RichIterable<V>public <R> ImmutableList<R> collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)
collectIf in interface ImmutableSortedMap<K,V>collectIf in interface SortedMapIterable<K,V>collectIf in interface OrderedIterable<V>collectIf in interface ReversibleIterable<V>collectIf in interface RichIterable<V>public <R> ImmutableSortedMap<K,R> collectValues(Function2<? super K,? super V,? extends R> function)
collectValues in interface ImmutableMapIterable<K,V>collectValues in interface MapIterable<K,V>collectValues in interface ImmutableSortedMap<K,V>collectValues in interface SortedMapIterable<K,V>public Pair<K,V> detect(Predicate2<? super K,? super V> predicate)
detect in interface MapIterable<K,V>public Optional<Pair<K,V>> detectOptional(Predicate2<? super K,? super V> predicate)
detectOptional in interface MapIterable<K,V>public <R> ImmutableList<R> flatCollect(Function<? super V,? extends Iterable<R>> function)
flatCollect in interface ImmutableSortedMap<K,V>flatCollect in interface SortedMapIterable<K,V>flatCollect in interface OrderedIterable<V>flatCollect in interface ReversibleIterable<V>flatCollect in interface RichIterable<V>public <S> ImmutableList<Pair<V,S>> zip(Iterable<S> that)
zip in interface ImmutableMapIterable<K,V>zip in interface ImmutableSortedMap<K,V>zip in interface SortedMapIterable<K,V>zip in interface OrderedIterable<V>zip in interface ReversibleIterable<V>zip in interface RichIterable<V>public ImmutableList<Pair<V,Integer>> zipWithIndex()
zipWithIndex in interface ImmutableMapIterable<K,V>zipWithIndex in interface ImmutableSortedMap<K,V>zipWithIndex in interface SortedMapIterable<K,V>zipWithIndex in interface OrderedIterable<V>zipWithIndex in interface ReversibleIterable<V>zipWithIndex in interface RichIterable<V>public <R> ImmutableListMultimap<R,V> groupBy(Function<? super V,? extends R> function)
groupBy in interface ImmutableMapIterable<K,V>groupBy in interface ImmutableSortedMap<K,V>groupBy in interface SortedMapIterable<K,V>groupBy in interface OrderedIterable<V>groupBy in interface ReversibleIterable<V>groupBy in interface RichIterable<V>public <R> ImmutableListMultimap<R,V> groupByEach(Function<? super V,? extends Iterable<R>> function)
groupByEach in interface ImmutableMapIterable<K,V>groupByEach in interface ImmutableSortedMap<K,V>groupByEach in interface SortedMapIterable<K,V>groupByEach in interface OrderedIterable<V>groupByEach in interface ReversibleIterable<V>groupByEach in interface RichIterable<V>public <V1> ImmutableMap<V1,V> groupByUniqueKey(Function<? super V,? extends V1> function)
groupByUniqueKey in interface ImmutableMapIterable<K,V>groupByUniqueKey in interface ImmutableSortedMap<K,V>groupByUniqueKey in interface RichIterable<V>public <K1,V1,V2> ImmutableMap<K1,V2> aggregateBy(Function<? super K,? extends K1> keyFunction, Function<? super V,? extends V1> valueFunction, Function0<? extends V2> zeroValueFactory, Function2<? super V2,? super V1,? extends V2> nonMutatingAggregator)
aggregateBy in interface ImmutableMapIterable<K,V>aggregateBy in interface MapIterable<K,V>aggregateBy in interface ImmutableSortedMap<K,V>public <V1> ImmutableObjectLongMap<V1> sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
sumByInt in interface RichIterable<V>public <V1> ImmutableObjectDoubleMap<V1> sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
sumByFloat in interface RichIterable<V>public <V1> ImmutableObjectLongMap<V1> sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
sumByLong in interface RichIterable<V>public <V1> ImmutableObjectDoubleMap<V1> sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
sumByDouble in interface RichIterable<V>public LazyIterable<V> asReversed()
asReversed in interface ReversibleIterable<V>public ImmutableSortedMap<K,V> toReversed()
toReversed in interface SortedMapIterable<K,V>toReversed in interface ReversibleIterable<V>public int detectLastIndex(Predicate<? super V> predicate)
detectLastIndex in interface ReversibleIterable<V>public ImmutableSortedMap<K,V> takeWhile(Predicate<? super V> predicate)
takeWhile in interface SortedMapIterable<K,V>takeWhile in interface OrderedIterable<V>takeWhile in interface ReversibleIterable<V>public ImmutableSortedMap<K,V> dropWhile(Predicate<? super V> predicate)
dropWhile in interface SortedMapIterable<K,V>dropWhile in interface OrderedIterable<V>dropWhile in interface ReversibleIterable<V>public PartitionImmutableList<V> partitionWhile(Predicate<? super V> predicate)
partitionWhile in interface SortedMapIterable<K,V>partitionWhile in interface OrderedIterable<V>partitionWhile in interface ReversibleIterable<V>public ImmutableList<V> distinct()
distinct in interface SortedMapIterable<K,V>distinct in interface OrderedIterable<V>distinct in interface ReversibleIterable<V>public int indexOf(Object object)
indexOf in interface OrderedIterable<V>public <S> boolean corresponds(OrderedIterable<S> other, Predicate2<? super V,? super S> predicate)
corresponds in interface OrderedIterable<V>public void forEach(int startIndex,
int endIndex,
Procedure<? super V> procedure)
forEach in interface OrderedIterable<V>public void forEachWithIndex(int fromIndex,
int toIndex,
ObjectIntProcedure<? super V> objectIntProcedure)
forEachWithIndex in interface OrderedIterable<V>public MutableStack<V> toStack()
toStack in interface OrderedIterable<V>public int detectIndex(Predicate<? super V> predicate)
detectIndex in interface OrderedIterable<V>public <V1> ImmutableBag<V1> countBy(Function<? super V,? extends V1> function)
countBy in interface ImmutableMapIterable<K,V>countBy in interface RichIterable<V>public <V1,P> ImmutableBag<V1> countByWith(Function2<? super V,? super P,? extends V1> function, P parameter)
countByWith in interface ImmutableMapIterable<K,V>countByWith in interface RichIterable<V>public <V1> ImmutableBag<V1> countByEach(Function<? super V,? extends Iterable<V1>> function)
countByEach in interface ImmutableMapIterable<K,V>countByEach in interface RichIterable<V>countByEach in class AbstractRichIterable<V>Copyright © 2004–2022. All rights reserved.