Uses of Interface
science.aist.gtf.transformation.Transformer
-
Packages that use Transformer Package Description science.aist.gtf.transformation -
-
Uses of Transformer in science.aist.gtf.transformation
Subinterfaces of Transformer in science.aist.gtf.transformation Modifier and Type Interface Description interface
GraphTransformer<InputV,InputE,Output>
Implementation for a GraphTransformer which uses a Graph with a generic input as an input and returns any output typeMethods in science.aist.gtf.transformation that return Transformer Modifier and Type Method Description default <NewOutput>
Transformer<Input,NewOutput>Transformer. andThen(Transformer<? super Output,? extends NewOutput> after)
Applies the current transformer first, and then executes the after transformerdefault Transformer<Input,Output>
Transformer. andThenConsumeResult(BiConsumer<Input,Output> consumer)
Applies the current transformer first, and then executes the consumer.default Transformer<Input,Output>
Transformer. verificateAfter(BiPredicate<Input,Output> inputOutputVerificator)
Verifies after applying the transformationdefault Transformer<Input,Output>
Transformer. verificateBefore(Predicate<Input> inputVerificator)
Verifies before applying the transformationMethods in science.aist.gtf.transformation with parameters of type Transformer Modifier and Type Method Description default <NewOutput>
Transformer<Input,NewOutput>Transformer. andThen(Transformer<? super Output,? extends NewOutput> after)
Applies the current transformer first, and then executes the after transformer
-