Module org.scijava.ops.api
Package org.scijava.ops.api
Class OpBuilder.Arity4_IT_OT<I1,I2,I3,I4,O>
- java.lang.Object
-
- org.scijava.ops.api.OpBuilder.Arity4_IT_OT<I1,I2,I3,I4,O>
-
- Type Parameters:
I1- The type of input 1.I2- The type of input 2.I3- The type of input 3.I4- The type of input 4.O- The type of the output.
- Enclosing class:
- OpBuilder
public final class OpBuilder.Arity4_IT_OT<I1,I2,I3,I4,O> extends Object
Builder with arity 4, input type given, output type given.- Author:
- Curtis Rueden
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Computers.Arity4<I1,I2,I3,I4,O>computer()Match aComputersop, based on the choices made with this builder, for operating on pre-allocated output.Functions.Arity4<I1,I2,I3,I4,O>function()Match aFunctionsop, based on the choices made with this builder.Stringhelp()Finds all Ops matching the current partial OpBuilder requestStringhelpVerbose()Finds all Ops matching the current partial OpBuilder request
-
-
-
Method Detail
-
function
public Functions.Arity4<I1,I2,I3,I4,O> function()
Match aFunctionsop, based on the choices made with this builder.- Returns:
- An instance of the matched op, e.g. for reuse.
- Throws:
OpMatchingException- if the Op request cannot be satisfied.- See Also:
For a reusable Op to process pre-allocated outputs without re-matching.
-
computer
public Computers.Arity4<I1,I2,I3,I4,O> computer()
Match aComputersop, based on the choices made with this builder, for operating on pre-allocated output.- Returns:
- An instance of the matched op, e.g. for reuse.
- Throws:
OpMatchingException- if the Op request cannot be satisfied.- See Also:
For a reusable Op that generates output instances based on its inputs.
-
help
public String help()
Finds all Ops matching the current partial OpBuilder request- Returns:
- a
Stringwith a simple entry for each Op satisfying the partial request
-
-