Module org.scijava.ops.api
Package org.scijava.ops.api
Class OpBuilder.Arity11_IV_OV<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11,O>
- java.lang.Object
-
- org.scijava.ops.api.OpBuilder.Arity11_IV_OV<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11,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.I5- The type of input 5.I6- The type of input 6.I7- The type of input 7.I8- The type of input 8.I9- The type of input 9.I10- The type of input 10.I11- The type of input 11.
- Enclosing class:
- OpBuilder
public final class OpBuilder.Arity11_IV_OV<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11,O> extends Object
Builder with arity 11, input value given, output value given.- Author:
- Curtis Rueden
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcompute()Match then immediately run aComputersop using the provided pre-allocated output.Computers.Arity11<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11,O>computer()Match aComputersop, based on the choices made with this builder, for operating on pre-allocated output.Stringhelp()Finds all Ops matching the current partial OpBuilder requestStringhelpVerbose()Finds all Ops matching the current partial OpBuilder request
-
-
-
Method Detail
-
computer
public Computers.Arity11<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11,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:
To match then immediately run a Computer Op using this builder's pre-allocated output.
-
compute
public void compute()
Match then immediately run aComputersop using the provided pre-allocated output.
-
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
-
-