All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cucumber.api.java8.Hi Maven / Gradle / Ivy

package cucumber.api.java8;

import cucumber.api.java8.StepdefBody.A0;
import cucumber.api.java8.StepdefBody.A1;
import cucumber.api.java8.StepdefBody.A2;
import cucumber.api.java8.StepdefBody.A3;
import cucumber.api.java8.StepdefBody.A4;
import cucumber.api.java8.StepdefBody.A5;
import cucumber.api.java8.StepdefBody.A6;
import cucumber.api.java8.StepdefBody.A7;
import cucumber.api.java8.StepdefBody.A8;
import cucumber.api.java8.StepdefBody.A9;

import cucumber.runtime.java.LambdaGlueRegistry;
import cucumber.runtime.java8.Java8StepDefinition;
import cucumber.runtime.java8.LambdaGlueBase;

/**
 * To execute steps in a feature file the steps must be
 * connected to executable code. This can be done by
 * implementing this interface.
 * 

* The parameters extracted from the step by the expression * along with the data table or doc string argument are provided as * arguments to the lambda expression. *

* The types of the parameters are determined by the cucumber or * regular expression. *

* The type of the data table or doc string argument is determined * by the argument name value. When none is provided cucumber will * attempt to transform the data table or doc string to the the * type of last argument. */ public interface Hi extends LambdaGlueBase { /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void अगर(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void अगर(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void अगर(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void अगर(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void अगर(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void अगर(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void अगर(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void अगर(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void अगर(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void अगर(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void अगर(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void अगर(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void अगर(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void अगर(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void अगर(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void अगर(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void अगर(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void अगर(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void अगर(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void अगर(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void और(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void और(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void और(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void और(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void और(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void और(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void और(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void और(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void और(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void और(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void और(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void और(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void और(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void और(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void और(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void और(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void और(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void और(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void और(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void और(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void कदा(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void कदा(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void कदा(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void कदा(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void कदा(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void कदा(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void कदा(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void कदा(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void कदा(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void कदा(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void कदा(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void कदा(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void कदा(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void कदा(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void कदा(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void कदा(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void कदा(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void कदा(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void कदा(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void कदा(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void किन्तु(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void किन्तु(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void किन्तु(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void किन्तु(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void किन्तु(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void किन्तु(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void किन्तु(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void किन्तु(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void किन्तु(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void किन्तु(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void किन्तु(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void किन्तु(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void किन्तु(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void किन्तु(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void किन्तु(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void किन्तु(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void किन्तु(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void किन्तु(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void किन्तु(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void किन्तु(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void चूंकि(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void चूंकि(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void चूंकि(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void चूंकि(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void चूंकि(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void चूंकि(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void चूंकि(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void चूंकि(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void चूंकि(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void चूंकि(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void चूंकि(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void चूंकि(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void चूंकि(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void चूंकि(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void चूंकि(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void चूंकि(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void चूंकि(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void चूंकि(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void चूंकि(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void चूंकि(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void जब(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void जब(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void जब(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void जब(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void जब(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void जब(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void जब(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void जब(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void जब(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void जब(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void जब(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void जब(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void जब(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void जब(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void जब(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void जब(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void जब(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void जब(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void जब(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void जब(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void तथा(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void तथा(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void तथा(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void तथा(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void तथा(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void तथा(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void तथा(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void तथा(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void तथा(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void तथा(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void तथा(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void तथा(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void तथा(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void तथा(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void तथा(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void तथा(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void तथा(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void तथा(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void तथा(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void तथा(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void तदा(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void तदा(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void तदा(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void तदा(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void तदा(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void तदा(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void तदा(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void तदा(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void तदा(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void तदा(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void तदा(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void तदा(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void तदा(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void तदा(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void तदा(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void तदा(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void तदा(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void तदा(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void तदा(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void तदा(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void तब(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void तब(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void तब(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void तब(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void तब(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void तब(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void तब(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void तब(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void तब(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void तब(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void तब(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void तब(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void तब(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void तब(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void तब(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void तब(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void तब(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void तब(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void तब(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void तब(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void पर(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void पर(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void पर(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void पर(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void पर(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void पर(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void पर(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void पर(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void पर(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void पर(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void पर(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void पर(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void पर(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void पर(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void पर(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void पर(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void पर(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void पर(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void पर(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void पर(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void परन्तु(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void परन्तु(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void परन्तु(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void परन्तु(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void परन्तु(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void परन्तु(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void परन्तु(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void परन्तु(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void परन्तु(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void परन्तु(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void परन्तु(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void परन्तु(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void परन्तु(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void परन्तु(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void परन्तु(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void परन्तु(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void परन्तु(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void परन्तु(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void परन्तु(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void परन्तु(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void यदि(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with no parameters */ default void यदि(String expression, long timeoutMillis, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A0.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters */ default void यदि(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 1 parameters */ default void यदि(String expression, long timeoutMillis, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A1.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters */ default void यदि(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 2 parameters */ default void यदि(String expression, long timeoutMillis, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A2.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters */ default void यदि(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 3 parameters */ default void यदि(String expression, long timeoutMillis, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A3.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters */ default void यदि(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 4 parameters */ default void यदि(String expression, long timeoutMillis, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A4.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters */ default void यदि(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 5 parameters */ default void यदि(String expression, long timeoutMillis, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A5.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters */ default void यदि(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 6 parameters */ default void यदि(String expression, long timeoutMillis, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A6.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters */ default void यदि(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 7 parameters */ default void यदि(String expression, long timeoutMillis, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A7.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters */ default void यदि(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 8 parameters */ default void यदि(String expression, long timeoutMillis, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A8.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters */ default void यदि(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, A9.class, body, typeRegistry) ); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param timeoutMillis max amount of milliseconds this is allowed to run for. 0 (default) means no restriction. * @param body a lambda expression with 9 parameters */ default void यदि(String expression, long timeoutMillis, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition((typeRegistry) -> Java8StepDefinition.create(expression, timeoutMillis, A9.class, body, typeRegistry) ); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy