public static class StreamExtensions.MapHasSeqKeyValueStream<K,V,CC extends scala.collection.MapOps<java.lang.Object,java.lang.Object,CC,?>>
extends java.lang.Object
Constructor and Description |
---|
MapHasSeqKeyValueStream(CC cc) |
Modifier and Type | Method and Description |
---|---|
<S extends java.util.stream.BaseStream<?,?>,St extends scala.collection.Stepper<?>> |
seqKeyStream(scala.collection.convert.StreamExtensions.StreamShape<K,S,St> s,
scala.collection.StepperShape<K,St> st)
Create a sequential
Java Stream for the keys of this map. |
<S extends java.util.stream.BaseStream<?,?>,St extends scala.collection.Stepper<?>> |
seqStream(scala.collection.convert.StreamExtensions.StreamShape<scala.Tuple2<K,V>,S,St> s,
scala.collection.StepperShape<scala.Tuple2<K,V>,St> st)
Create a sequential
Java Stream for the (key, value) pairs of
this map. |
<S extends java.util.stream.BaseStream<?,?>,St extends scala.collection.Stepper<?>> |
seqValueStream(scala.collection.convert.StreamExtensions.StreamShape<V,S,St> s,
scala.collection.StepperShape<V,St> st)
Create a sequential
Java Stream for the values of this map. |
public MapHasSeqKeyValueStream(CC cc)
public <S extends java.util.stream.BaseStream<?,?>,St extends scala.collection.Stepper<?>> S seqKeyStream(scala.collection.convert.StreamExtensions.StreamShape<K,S,St> s, scala.collection.StepperShape<K,St> st)
Java Stream
for the keys of this map. If
the keys are primitive values, a corresponding specialized Stream is returned (e.g.,
IntStream
).s
- (undocumented)st
- (undocumented)public <S extends java.util.stream.BaseStream<?,?>,St extends scala.collection.Stepper<?>> S seqStream(scala.collection.convert.StreamExtensions.StreamShape<scala.Tuple2<K,V>,S,St> s, scala.collection.StepperShape<scala.Tuple2<K,V>,St> st)
Java Stream
for the (key, value)
pairs of
this map.s
- (undocumented)st
- (undocumented)public <S extends java.util.stream.BaseStream<?,?>,St extends scala.collection.Stepper<?>> S seqValueStream(scala.collection.convert.StreamExtensions.StreamShape<V,S,St> s, scala.collection.StepperShape<V,St> st)
Java Stream
for the values of this map. If
the values are primitives, a corresponding specialized Stream is returned (e.g.,
IntStream
).s
- (undocumented)st
- (undocumented)