Interface Step2Builder<U>
-
- Type Parameters:
U- the type of the currently configured use case
public interface Step2Builder<U>This builder step defines, for whichEventTypethe use case class configured in the previousInvokingUseCaseStepBuilder.invokingUseCase(Class)method should be invoked.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Step3Builder<U>forType(EventType eventType)Defines theEventTypeto invoke the use case for.default Step3Builder<U>forType(String eventType)Defines theEventTypeasStringto invoke the use case for.
-
-
-
Method Detail
-
forType
default Step3Builder<U> forType(String eventType)
Defines theEventTypeasStringto invoke the use case for.- Parameters:
eventType- theEventTypeStringto check for- Returns:
- the next step in the fluent builder interface
-
forType
Step3Builder<U> forType(EventType eventType)
Defines theEventTypeto invoke the use case for.- Parameters:
eventType- theEventTypeto check for- Returns:
- the next step in the fluent builder interface
-
-