Uses of Interface
aQute.bnd.stream.MapStream
Packages that use MapStream
-
Uses of MapStream in aQute.bnd.header
Methods in aQute.bnd.header that return MapStream -
Uses of MapStream in aQute.bnd.osgi
Methods in aQute.bnd.osgi that return MapStreamModifier and TypeMethodDescriptionInstructions.matchesStream(String value) Instructions.stream()Packages.stream() -
Uses of MapStream in aQute.bnd.stream
Classes in aQute.bnd.stream that implement MapStreamMethods in aQute.bnd.stream that return MapStreamModifier and TypeMethodDescriptionstatic <K,V> MapStream<K, V> EntryPipeline.distinct()MapStream.distinct()EntryPipeline.dropWhile(BiPredicate<? super K, ? super V> predicate) MapStream.dropWhile(BiPredicate<? super K, ? super V> predicate) EntryPipeline.dropWhileKey(Predicate<? super K> predicate) MapStream.dropWhileKey(Predicate<? super K> predicate) EntryPipeline.dropWhileValue(Predicate<? super V> predicate) MapStream.dropWhileValue(Predicate<? super V> predicate) static <K,V> MapStream<K, V> MapStream.empty()EntryPipeline.filter(BiPredicate<? super K, ? super V> filter) MapStream.filter(BiPredicate<? super K, ? super V> filter) EntryPipeline.filterValue(Predicate<? super V> filter) MapStream.filterValue(Predicate<? super V> filter) <R,S> MapStream<R, S> EntryPipeline.flatMap(BiFunction<? super K, ? super V, ? extends MapStream<? extends R, ? extends S>> mapper) <R,S> MapStream<R, S> MapStream.flatMap(BiFunction<? super K, ? super V, ? extends MapStream<? extends R, ? extends S>> mapper) EntryPipeline.flatMapKey(Function<? super K, ? extends Stream<? extends R>> mapper) MapStream.flatMapKey(Function<? super K, ? extends Stream<? extends R>> mapper) EntryPipeline.flatMapValue(Function<? super V, ? extends Stream<? extends S>> mapper) MapStream.flatMapValue(Function<? super V, ? extends Stream<? extends S>> mapper) EntryPipeline.limit(long maxSize) MapStream.limit(long maxSize) <R,S> MapStream<R, S> EntryPipeline.map(BiFunction<? super K, ? super V, ? extends Map.Entry<? extends R, ? extends S>> mapper) <R,S> MapStream<R, S> MapStream.map(BiFunction<? super K, ? super V, ? extends Map.Entry<? extends R, ? extends S>> mapper) static <K,V> MapStream<K, V> MapStream.of(Collection<? extends Map.Entry<? extends K, ? extends V>> collection) static <K,V> MapStream<K, V> static <K,V> MapStream<K, V> static <K,V> MapStream<K, V> MapStream.of(K k1, V v1) static <K,V> MapStream<K, V> MapStream.of(K k1, V v1, K k2, V v2) static <K,V> MapStream<K, V> MapStream.of(K k1, V v1, K k2, V v2, K k3, V v3) static <K,V> MapStream<K, V> MapStream.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) static <K,V> MapStream<K, V> static <O,K, V> MapStream<K, V> MapStream.ofEntries(Stream<? extends O> stream, Function<? super O, ? extends Map.Entry<? extends K, ? extends V>> entryMapper) static <K,V> MapStream<K, V> MapStream.ofNullable(Collection<? extends Map.Entry<? extends K, ? extends V>> collection) static <K,V> MapStream<K, V> MapStream.ofNullable(Map<? extends K, ? extends V> map) static <K,V> MapStream<K, V> MapStream.ofNullable(Stream<? extends Map.Entry<? extends K, ? extends V>> stream) EntryPipeline.parallel()EntryPipeline.peek(BiConsumer<? super K, ? super V> peek) MapStream.peek(BiConsumer<? super K, ? super V> peek) EntryPipeline.sequential()EntryPipeline.skip(long n) MapStream.skip(long n) EntryPipeline.sorted()EntryPipeline.sorted(Comparator<? super Map.Entry<K, V>> comparator) MapStream.sorted()MapStream.sorted(Comparator<? super Map.Entry<K, V>> comparator) EntryPipeline.sortedByKey()EntryPipeline.sortedByKey(Comparator<? super K> comparator) MapStream.sortedByKey()MapStream.sortedByKey(Comparator<? super K> comparator) EntryPipeline.sortedByValue()EntryPipeline.sortedByValue(Comparator<? super V> comparator) MapStream.sortedByValue()MapStream.sortedByValue(Comparator<? super V> comparator) EntryPipeline.takeWhile(BiPredicate<? super K, ? super V> predicate) MapStream.takeWhile(BiPredicate<? super K, ? super V> predicate) EntryPipeline.takeWhileKey(Predicate<? super K> predicate) MapStream.takeWhileKey(Predicate<? super K> predicate) EntryPipeline.takeWhileValue(Predicate<? super V> predicate) MapStream.takeWhileValue(Predicate<? super V> predicate) EntryPipeline.unordered()Methods in aQute.bnd.stream with parameters of type MapStreamMethod parameters in aQute.bnd.stream with type arguments of type MapStream