Uses of Interface
eu.bandm.tools.ops.Consumer
Package
Description
Types for fundamental mathematical structures, plus libraries of respective
constants and operators.
-
Uses of Consumer in eu.bandm.tools.ops
Modifier and TypeInterfaceDescriptioninterface
InitConsumer<D,
S> Subinterface which provides an initial state, on which the very first call toconsume(D, T)
can be executed.Modifier and TypeMethodDescriptionConsumers.addToList()
Consumers.addToSet()
static Consumer<Object,
StringBuilder> static <D,
S> Consumer<D, S> Consumers.constant()
A consumer which does neither need nor affect its state.Consumers.putMapByKey
(Function<? super K, ? extends V> val) Consumers.putMapByValue
(Function<? super V, ? extends K> key) static <A,
S> Consumer<A, S> Consumers.run
(BiFunction<A, S, Runnable> r) static <A,
S> Consumer<A, S> Consumers.sequentially
(Consumer<? super A, S> step1) static <A,
S> Consumer<A, S> Consumers.sequentially
(Consumer<? super A, S> step1, Consumer<? super A, S> step2) static <A,
S> Consumer<A, S> Consumers.sequentially
(Consumer<? super A, S> step1, Consumer<? super A, S> step2, Consumer<? super A, S> step3) static <A,
S> Consumer<A, S> Consumers.sequentially
(Consumer<? super A, S> step1, Consumer<? super A, S> step2, Consumer<? super A, S> step3, Consumer<? super A, S> step4) static <A,
S> Consumer<A, S> Consumers.sequentially
(List<? extends Consumer<? super A, S>> steps) Modifier and TypeMethodDescriptionStatefuls.produceConsume
(BiFunction<? super S, ? super A, ? extends B> prod, Consumer<? super B, A> cons) static <A,
S> Consumer<A, S> Consumers.sequentially
(Consumer<? super A, S> step1) static <A,
S> Consumer<A, S> Consumers.sequentially
(Consumer<? super A, S> step1, Consumer<? super A, S> step2) static <A,
S> Consumer<A, S> Consumers.sequentially
(Consumer<? super A, S> step1, Consumer<? super A, S> step2, Consumer<? super A, S> step3) static <A,
S> Consumer<A, S> Consumers.sequentially
(Consumer<? super A, S> step1, Consumer<? super A, S> step2, Consumer<? super A, S> step3, Consumer<? super A, S> step4) static <D,
S> InitConsumer<D, S> Consumers.withInitialState
(Consumer<? super D, S> c, S init) Modifier and TypeMethodDescriptionstatic <A,
S> Consumer<A, S> Consumers.sequentially
(List<? extends Consumer<? super A, S>> steps)