Uses of Interface
at.jku.ssw.fp.sect05_2.workflow.Step
-
Packages that use Step Package Description at.jku.ssw.fp.sect05_2.workflow -
-
Uses of Step in at.jku.ssw.fp.sect05_2.workflow
Methods in at.jku.ssw.fp.sect05_2.workflow that return Step Modifier and Type Method Description default <P> Step<I,Pair<O,P>>
Step. both(Step<? super I,? extends P> that)
Creates a combined step which executes this step and the step given as a parameter and combines the result of both in aPair
.default <P,R>
Step<I,R>Step. combine(Step<? super I,? extends P> that, BiFunction<? super O,? super P,R> combiner)
Creates a combined step which executes this step and the step given as a parameter and combines the result by the given binary function.default Step<I,O>
Step. either(Step<? super I,? extends O> that, Predicate<? super I> pred)
Creates a combined step which executes either this step or the step given as parameter.static <O> Step<O,O>
Step. repeat(int n, Step<? super O,? extends O> step)
Creates a step which executes the given stepn
times.default <R> Step<I,R>
Step. then(Step<? super O,? extends R> next)
Combines this step with the step given as parameter.Methods in at.jku.ssw.fp.sect05_2.workflow with parameters of type Step Modifier and Type Method Description default <P> Step<I,Pair<O,P>>
Step. both(Step<? super I,? extends P> that)
Creates a combined step which executes this step and the step given as a parameter and combines the result of both in aPair
.default <P,R>
Step<I,R>Step. combine(Step<? super I,? extends P> that, BiFunction<? super O,? super P,R> combiner)
Creates a combined step which executes this step and the step given as a parameter and combines the result by the given binary function.default Step<I,O>
Step. either(Step<? super I,? extends O> that, Predicate<? super I> pred)
Creates a combined step which executes either this step or the step given as parameter.static <O> Step<O,O>
Step. repeat(int n, Step<? super O,? extends O> step)
Creates a step which executes the given stepn
times.default <R> Step<I,R>
Step. then(Step<? super O,? extends R> next)
Combines this step with the step given as parameter.
-