@API(status=STABLE) public interface Pl extends LambdaGlue
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.
DEFAULT_AFTER_ORDER, DEFAULT_BEFORE_ORDER, EMPTY_TAG_EXPRESSIONS, NO_TIMEOUT
Modifier and Type | Method and Description |
---|---|
default void |
Ale(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Ale(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Ale(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Ale(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Ale(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Ale(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Ale(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Ale(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Ale(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Ale(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Ale(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Ale(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Ale(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Ale(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Ale(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Ale(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Ale(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Ale(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Ale(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Ale(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Gdy(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Gdy(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Gdy(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Gdy(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Gdy(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Gdy(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Gdy(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Gdy(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Gdy(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Gdy(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Gdy(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Gdy(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Gdy(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Gdy(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Gdy(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Gdy(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Gdy(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Gdy(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Gdy(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Gdy(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
I(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
I(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
I(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
I(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
I(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
I(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
I(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
I(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
I(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
I(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
I(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
I(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
I(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
I(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
I(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
I(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
I(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
I(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
I(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
I(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Jeśli(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Jeśli(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Jeśli(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Jeśli(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Jeśli(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Jeśli(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Jeśli(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Jeśli(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Jeśli(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Jeśli(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Jeśli(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Jeśli(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Jeśli(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Jeśli(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Jeśli(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Jeśli(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Jeśli(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Jeśli(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Jeśli(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Jeśli(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Jeżeli(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Jeżeli(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Jeżeli(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Jeżeli(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Jeżeli(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Jeżeli(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Jeżeli(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Jeżeli(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Jeżeli(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Jeżeli(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Jeżeli(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Jeżeli(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Jeżeli(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Jeżeli(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Jeżeli(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Jeżeli(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Jeżeli(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Jeżeli(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Jeżeli(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Jeżeli(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Kiedy(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Kiedy(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Kiedy(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Kiedy(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Kiedy(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Kiedy(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Kiedy(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Kiedy(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Kiedy(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Kiedy(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Kiedy(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Kiedy(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Kiedy(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Kiedy(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Kiedy(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Kiedy(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Kiedy(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Kiedy(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Kiedy(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Kiedy(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Mając(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Mając(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Mając(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Mając(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Mając(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Mając(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Mając(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Mając(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Mając(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Mając(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Mając(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Mając(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Mając(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Mając(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Mając(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Mając(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Mając(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Mając(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Mając(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Mając(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Oraz(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Oraz(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Oraz(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Oraz(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Oraz(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Oraz(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Oraz(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Oraz(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Oraz(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Oraz(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Oraz(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Oraz(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Oraz(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Oraz(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Oraz(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Oraz(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Oraz(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Oraz(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Oraz(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Oraz(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Wtedy(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Wtedy(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Wtedy(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Wtedy(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Wtedy(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Wtedy(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Wtedy(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Wtedy(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Wtedy(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Wtedy(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Wtedy(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Wtedy(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Wtedy(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Wtedy(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Wtedy(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Wtedy(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Wtedy(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Wtedy(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Wtedy(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Wtedy(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Zakładając(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Zakładając(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Zakładając(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Zakładając(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Zakładając(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Zakładając(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Zakładając(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Zakładając(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Zakładając(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Zakładając(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Zakładając(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Zakładając(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Zakładając(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Zakładając(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Zakładając(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Zakładając(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Zakładając(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Zakładając(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Zakładając(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Zakładając(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Zakładającże(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Zakładającże(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Zakładającże(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Zakładającże(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Zakładającże(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Zakładającże(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Zakładającże(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Zakładającże(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Zakładającże(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Zakładającże(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Zakładającże(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Zakładającże(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Zakładającże(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Zakładającże(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Zakładającże(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Zakładającże(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Zakładającże(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Zakładającże(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Zakładającże(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Zakładającże(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
After, After, After, After, After, After, After, After, After, After, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, Before, Before, Before, Before, Before, Before, Before, Before, Before, Before, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep
default void Ale(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Ale(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Ale(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Ale(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Ale(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Ale(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Ale(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Ale(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Ale(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Ale(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Ale(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Ale(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Ale(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Ale(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Ale(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Ale(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Ale(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Ale(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Ale(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Ale(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Gdy(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Gdy(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Gdy(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Gdy(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Gdy(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Gdy(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Gdy(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Gdy(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Gdy(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Gdy(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Gdy(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Gdy(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Gdy(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Gdy(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Gdy(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Gdy(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Gdy(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Gdy(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Gdy(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Gdy(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void I(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void I(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void I(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void I(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void I(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void I(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void I(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void I(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void I(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void I(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void I(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void I(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void I(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void I(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void I(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void I(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void I(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void I(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void I(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void I(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Jeśli(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Jeśli(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Jeśli(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Jeśli(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Jeśli(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Jeśli(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Jeśli(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Jeśli(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Jeśli(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Jeśli(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Jeśli(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Jeśli(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Jeśli(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Jeśli(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Jeśli(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Jeśli(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Jeśli(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Jeśli(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Jeśli(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Jeśli(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Jeżeli(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Jeżeli(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Jeżeli(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Jeżeli(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Jeżeli(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Jeżeli(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Jeżeli(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Jeżeli(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Jeżeli(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Jeżeli(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Jeżeli(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Jeżeli(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Jeżeli(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Jeżeli(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Jeżeli(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Jeżeli(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Jeżeli(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Jeżeli(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Jeżeli(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Jeżeli(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Kiedy(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Kiedy(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Kiedy(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Kiedy(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Kiedy(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Kiedy(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Kiedy(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Kiedy(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Kiedy(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Kiedy(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Kiedy(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Kiedy(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Kiedy(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Kiedy(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Kiedy(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Kiedy(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Kiedy(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Kiedy(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Kiedy(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Kiedy(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Mając(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Mając(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Mając(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Mając(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Mając(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Mając(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Mając(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Mając(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Mając(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Mając(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Mając(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Mając(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Mając(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Mając(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Mając(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Mając(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Mając(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Mając(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Mając(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Mając(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Oraz(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Oraz(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Oraz(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Oraz(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Oraz(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Oraz(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Oraz(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Oraz(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Oraz(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Oraz(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Oraz(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Oraz(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Oraz(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Oraz(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Oraz(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Oraz(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Oraz(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Oraz(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Oraz(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Oraz(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Wtedy(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Wtedy(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Wtedy(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Wtedy(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Wtedy(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Wtedy(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Wtedy(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Wtedy(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Wtedy(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Wtedy(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Wtedy(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Wtedy(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Wtedy(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Wtedy(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Wtedy(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Wtedy(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Wtedy(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Wtedy(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Wtedy(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Wtedy(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Zakładając(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Zakładając(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Zakładając(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Zakładając(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Zakładając(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Zakładając(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Zakładając(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Zakładając(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Zakładając(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Zakładając(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Zakładając(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Zakładając(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Zakładając(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Zakładając(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Zakładając(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Zakładając(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Zakładając(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Zakładając(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Zakładając(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Zakładając(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Zakładającże(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Zakładającże(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Zakładającże(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Zakładającże(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Zakładającże(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Zakładającże(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Zakładającże(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Zakładającże(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Zakładającże(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Zakładającże(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Zakładającże(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Zakładającże(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Zakładającże(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Zakładającże(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Zakładającże(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Zakładającże(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Zakładającże(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Zakładającże(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Zakładającże(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Zakładającże(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersCopyright © 2019. All rights reserved.