public abstract class AbstractMapIterable<K,V> extends AbstractRichIterable<V> implements org.eclipse.collections.api.map.MapIterable<K,V>
| Constructor and Description |
|---|
AbstractMapIterable() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
<P> boolean |
allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
<P> boolean |
anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
org.eclipse.collections.api.LazyIterable<V> |
asLazy() |
org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.RichIterable<V>> |
chunk(int size) |
boolean |
contains(Object object) |
V |
detect(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
V |
detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate,
org.eclipse.collections.api.block.function.Function0<? extends V> function) |
<P> V |
detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
<P> V |
detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter,
org.eclipse.collections.api.block.function.Function0<? extends V> function) |
void |
each(org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure) |
void |
forEachKey(org.eclipse.collections.api.block.procedure.Procedure<? super K> procedure) |
void |
forEachValue(org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure) |
<P> void |
forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super V,? super P> procedure2,
P parameter) |
void |
forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V> objectIntProcedure) |
V |
getFirst() |
V |
getIfAbsent(K key,
org.eclipse.collections.api.block.function.Function0<? extends V> function) |
V |
getIfAbsentValue(K key,
V value) |
<P> V |
getIfAbsentWith(K key,
org.eclipse.collections.api.block.function.Function<? super P,? extends V> function,
P parameter) |
V |
getLast() |
<A> A |
ifPresentApply(K key,
org.eclipse.collections.api.block.function.Function<? super V,? extends A> function) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
<P> boolean |
noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
appendString, appendString, appendString, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, containsAll, containsAllArguments, containsAllIterable, count, countWith, flatCollect, forEach, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, isEmpty, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, notEmpty, reject, rejectWith, select, selectWith, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexequals, getClass, hashCode, notify, notifyAll, wait, wait, waitcollect, collectValues, containsKey, containsValue, detect, equals, flip, flipUniqueValues, forEachKeyValue, get, hashCode, keysView, keyValuesView, reject, select, tap, toImmutable, toString, valuesViewaggregateBy, aggregateInPlaceBy, appendString, appendString, appendString, collect, collect, collectBoolean, collectBoolean, collectByte, collectByte, collectChar, collectChar, collectDouble, collectDouble, collectFloat, collectFloat, collectIf, collectIf, collectInt, collectInt, collectLong, collectLong, collectShort, collectShort, collectWith, collectWith, containsAll, containsAllArguments, containsAllIterable, count, countWith, flatCollect, flatCollect, groupBy, groupBy, groupByEach, groupByEach, groupByUniqueKey, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, isEmpty, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, notEmpty, partition, partitionWith, reject, reject, rejectWith, rejectWith, select, select, selectInstancesOf, selectWith, selectWith, size, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, zip, zip, zipWithIndex, zipWithIndexforEach, iterator, spliteratorpublic <A> A ifPresentApply(K key, org.eclipse.collections.api.block.function.Function<? super V,? extends A> function)
public V getIfAbsent(K key, org.eclipse.collections.api.block.function.Function0<? extends V> function)
public <P> V getIfAbsentWith(K key, org.eclipse.collections.api.block.function.Function<? super P,? extends V> function, P parameter)
public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
anySatisfy in interface org.eclipse.collections.api.RichIterable<V>anySatisfy in class AbstractRichIterable<V>public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
anySatisfyWith in interface org.eclipse.collections.api.RichIterable<V>anySatisfyWith in class AbstractRichIterable<V>public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
allSatisfy in interface org.eclipse.collections.api.RichIterable<V>allSatisfy in class AbstractRichIterable<V>public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
allSatisfyWith in interface org.eclipse.collections.api.RichIterable<V>allSatisfyWith in class AbstractRichIterable<V>public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
noneSatisfy in interface org.eclipse.collections.api.RichIterable<V>noneSatisfy in class AbstractRichIterable<V>public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
noneSatisfyWith in interface org.eclipse.collections.api.RichIterable<V>noneSatisfyWith in class AbstractRichIterable<V>public org.eclipse.collections.api.LazyIterable<V> asLazy()
asLazy in interface org.eclipse.collections.api.RichIterable<V>asLazy in class AbstractRichIterable<V>public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.RichIterable<V>> chunk(int size)
chunk in interface org.eclipse.collections.api.RichIterable<V>public void each(org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure)
each in interface org.eclipse.collections.api.RichIterable<V>public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super V,? super P> procedure2, P parameter)
forEachWith in interface org.eclipse.collections.api.InternalIterable<V>forEachWith in class AbstractRichIterable<V>public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V> objectIntProcedure)
forEachWithIndex in interface org.eclipse.collections.api.InternalIterable<V>forEachWithIndex in class AbstractRichIterable<V>public void forEachKey(org.eclipse.collections.api.block.procedure.Procedure<? super K> procedure)
public void forEachValue(org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure)
public boolean contains(Object object)
contains in interface org.eclipse.collections.api.RichIterable<V>contains in class AbstractRichIterable<V>public V detect(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
detect in interface org.eclipse.collections.api.RichIterable<V>detect in class AbstractRichIterable<V>public <P> V detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
detectWith in interface org.eclipse.collections.api.RichIterable<V>detectWith in class AbstractRichIterable<V>public V detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate, org.eclipse.collections.api.block.function.Function0<? extends V> function)
detectIfNone in interface org.eclipse.collections.api.RichIterable<V>detectIfNone in class AbstractRichIterable<V>public <P> V detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter, org.eclipse.collections.api.block.function.Function0<? extends V> function)
detectWithIfNone in interface org.eclipse.collections.api.RichIterable<V>detectWithIfNone in class AbstractRichIterable<V>public V getFirst()
getFirst in interface org.eclipse.collections.api.RichIterable<V>public V getLast()
getLast in interface org.eclipse.collections.api.RichIterable<V>public Object[] toArray()
toArray in interface org.eclipse.collections.api.RichIterable<V>toArray in class AbstractRichIterable<V>public <T> T[] toArray(T[] a)
toArray in interface org.eclipse.collections.api.RichIterable<V>toArray in class AbstractRichIterable<V>Copyright © 2004–2018. All rights reserved.