MapStream.AbstractMapStream<K,V>, MapStream.BiVal<K,V>, MapStream.Impl
Constructor and Description |
---|
AbstractMapStream() |
Modifier and Type | Method and Description |
---|---|
boolean |
allMatch(BiPredicate<? super K,? super V> biPredicate) |
boolean |
anyMatch(BiPredicate<? super K,? super V> biPredicate) |
MapStream<K,Iterable<V>> |
asMultiStream() |
MapStream<K,V> |
filter(BiPredicate<? super K,? super V> biPredicate) |
MapStream<K,V> |
filterKeys(Predicate<K> filter) |
MapStream<K,V> |
filterValues(Predicate<V> filter) |
void |
forEach(BiBlock<? super K,? super V> biBlock) |
BiValue<K,V> |
getAny() |
BiValue<K,V> |
getFirst() |
BiValue<K,V> |
getOnly() |
Iterable<K> |
inputs() |
<A extends Map<? super K,? super V>> |
into(A destination) |
<A extends Map<? super K,C>,C extends Collection<? super V>> |
intoMulti(A destination,
Factory<C> factory) |
boolean |
isEmpty() |
Iterator<BiValue<K,V>> |
iterator() |
<W> MapStream<K,W> |
map(BiMapper<K,V,W> kvwBiMapper) |
<W> MapStream<K,W> |
mapValues(Mapper<V,W> vwMapper) |
<W> MapStream<K,Iterable<W>> |
mapValuesMulti(BiMapper<? super K,? super V,Iterable<W>> iterableBiMapper) |
MapStream<K,V> |
merge(MapStream<K,V> other) |
boolean |
noneMatch(BiPredicate<? super K,? super V> biPredicate) |
MapStream<K,V> |
sorted(Comparator<? super K> comparator) |
MapStream<V,K> |
swap() |
Iterable<V> |
values() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
asIterable
forEach, spliterator
public boolean allMatch(BiPredicate<? super K,? super V> biPredicate)
public MapStream<K,Iterable<V>> asMultiStream()
asMultiStream
in interface MapStream<K,V>
public MapStream<K,V> filterKeys(Predicate<K> filter)
filterKeys
in interface MapStream<K,V>
public MapStream<K,V> filterValues(Predicate<V> filter)
filterValues
in interface MapStream<K,V>
public <W> MapStream<K,Iterable<W>> mapValuesMulti(BiMapper<? super K,? super V,Iterable<W>> iterableBiMapper)
mapValuesMulti
in interface MapStream<K,V>
public <A extends Map<? super K,C>,C extends Collection<? super V>> A intoMulti(A destination, Factory<C> factory)
public boolean anyMatch(BiPredicate<? super K,? super V> biPredicate)
public boolean noneMatch(BiPredicate<? super K,? super V> biPredicate)
public MapStream<K,V> sorted(Comparator<? super K> comparator)
Copyright © 2012-2014 Julian Hyde. All Rights Reserved.