@API(status=STABLE) public interface Sk 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 |
A(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 |
A(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 |
A(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 |
A(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> |
A(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> |
A(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> |
A(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> |
A(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> |
A(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> |
A(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 |
A(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
A(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
A(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
A(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
A(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
A(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
A(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
A(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> |
A(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> |
A(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Ak(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 |
Ak(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 |
Ak(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 |
Ak(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> |
Ak(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> |
Ak(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> |
Ak(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> |
Ak(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> |
Ak(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> |
Ak(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 |
Ak(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Ak(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Ak(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Ak(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Ak(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Ak(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Ak(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Ak(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> |
Ak(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> |
Ak(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
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 |
Ataktiež(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 |
Ataktiež(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 |
Ataktiež(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 |
Ataktiež(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> |
Ataktiež(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> |
Ataktiež(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> |
Ataktiež(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> |
Ataktiež(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> |
Ataktiež(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> |
Ataktiež(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 |
Ataktiež(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Ataktiež(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Ataktiež(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Ataktiež(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Ataktiež(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Ataktiež(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Ataktiež(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Ataktiež(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> |
Ataktiež(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> |
Ataktiež(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Atiež(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 |
Atiež(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 |
Atiež(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 |
Atiež(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> |
Atiež(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> |
Atiež(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> |
Atiež(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> |
Atiež(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> |
Atiež(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> |
Atiež(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 |
Atiež(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Atiež(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Atiež(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Atiež(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Atiež(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Atiež(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Atiež(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Atiež(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> |
Atiež(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> |
Atiež(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Azároveň(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 |
Azároveň(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 |
Azároveň(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 |
Azároveň(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> |
Azároveň(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> |
Azároveň(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> |
Azároveň(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> |
Azároveň(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> |
Azároveň(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> |
Azároveň(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 |
Azároveň(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Azároveň(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Azároveň(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Azároveň(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Azároveň(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Azároveň(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Azároveň(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Azároveň(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> |
Azároveň(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> |
Azároveň(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Keď(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 |
Keď(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 |
Keď(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 |
Keď(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> |
Keď(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> |
Keď(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> |
Keď(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> |
Keď(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> |
Keď(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> |
Keď(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 |
Keď(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Keď(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Keď(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Keď(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Keď(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Keď(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Keď(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Keď(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> |
Keď(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> |
Keď(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Pokiaľ(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 |
Pokiaľ(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 |
Pokiaľ(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 |
Pokiaľ(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> |
Pokiaľ(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> |
Pokiaľ(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> |
Pokiaľ(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> |
Pokiaľ(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> |
Pokiaľ(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> |
Pokiaľ(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 |
Pokiaľ(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Pokiaľ(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Pokiaľ(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Pokiaľ(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Pokiaľ(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Pokiaľ(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Pokiaľ(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Pokiaľ(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> |
Pokiaľ(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> |
Pokiaľ(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Potom(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 |
Potom(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 |
Potom(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 |
Potom(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> |
Potom(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> |
Potom(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> |
Potom(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> |
Potom(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> |
Potom(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> |
Potom(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 |
Potom(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Potom(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Potom(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Potom(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Potom(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Potom(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Potom(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Potom(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> |
Potom(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> |
Potom(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Tak(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 |
Tak(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 |
Tak(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 |
Tak(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> |
Tak(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> |
Tak(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> |
Tak(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> |
Tak(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> |
Tak(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> |
Tak(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 |
Tak(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Tak(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Tak(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Tak(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Tak(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Tak(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Tak(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Tak(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> |
Tak(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> |
Tak(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Zapredpokladu(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 |
Zapredpokladu(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 |
Zapredpokladu(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 |
Zapredpokladu(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> |
Zapredpokladu(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> |
Zapredpokladu(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> |
Zapredpokladu(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> |
Zapredpokladu(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> |
Zapredpokladu(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> |
Zapredpokladu(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 |
Zapredpokladu(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Zapredpokladu(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Zapredpokladu(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Zapredpokladu(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Zapredpokladu(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Zapredpokladu(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Zapredpokladu(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Zapredpokladu(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> |
Zapredpokladu(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> |
Zapredpokladu(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 A(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void A(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 A(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void A(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 A(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 A(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 A(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 A(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 A(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 A(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 A(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 A(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 A(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 A(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 A(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 A(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 A(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 A(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 A(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 A(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 Ataktiež(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Ataktiež(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 Ataktiež(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Ataktiež(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 Atiež(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Atiež(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 Atiež(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Atiež(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 Azároveň(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Azároveň(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 Azároveň(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Azároveň(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 Ak(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Ak(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 Ak(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 Ak(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 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 Keď(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Keď(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 Keď(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Keď(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 Pokiaľ(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Pokiaľ(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 Pokiaľ(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Pokiaľ(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 Potom(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Potom(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 Potom(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Potom(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 Tak(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Tak(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 Tak(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Tak(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 Zapredpokladu(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Zapredpokladu(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 Zapredpokladu(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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 Zapredpokladu(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.