Package ninja
Interface WithControllerMethod<T>
-
- Type Parameters:
T
- The result to return
- All Known Subinterfaces:
RouteBuilder
- All Known Implementing Classes:
ReverseRouter
,RouteBuilderImpl
public interface WithControllerMethod<T>
Interface that exposes multiple with methods that accept a large number of various argument combinations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description T
with(ControllerMethods.ControllerMethod controllerMethod)
default T
with(ControllerMethods.ControllerMethod0 controllerMethod)
default <A> T
with(ControllerMethods.ControllerMethod1<A> controllerMethod)
default <A,B,C,D,E,F,G,H,I,J>
Twith(ControllerMethods.ControllerMethod10<A,B,C,D,E,F,G,H,I,J> controllerMethod)
default <A,B>
Twith(ControllerMethods.ControllerMethod2<A,B> controllerMethod)
default <A,B,C>
Twith(ControllerMethods.ControllerMethod3<A,B,C> controllerMethod)
default <A,B,C,D>
Twith(ControllerMethods.ControllerMethod4<A,B,C,D> controllerMethod)
default <A,B,C,D,E>
Twith(ControllerMethods.ControllerMethod5<A,B,C,D,E> controllerMethod)
default <A,B,C,D,E,F>
Twith(ControllerMethods.ControllerMethod6<A,B,C,D,E,F> controllerMethod)
default <A,B,C,D,E,F,G>
Twith(ControllerMethods.ControllerMethod7<A,B,C,D,E,F,G> controllerMethod)
default <A,B,C,D,E,F,G,H>
Twith(ControllerMethods.ControllerMethod8<A,B,C,D,E,F,G,H> controllerMethod)
default <A,B,C,D,E,F,G,H,I>
Twith(ControllerMethods.ControllerMethod9<A,B,C,D,E,F,G,H,I> controllerMethod)
-
-
-
Method Detail
-
with
T with(ControllerMethods.ControllerMethod controllerMethod)
-
with
default T with(ControllerMethods.ControllerMethod0 controllerMethod)
-
with
default <A> T with(ControllerMethods.ControllerMethod1<A> controllerMethod)
-
with
default <A,B> T with(ControllerMethods.ControllerMethod2<A,B> controllerMethod)
-
with
default <A,B,C> T with(ControllerMethods.ControllerMethod3<A,B,C> controllerMethod)
-
with
default <A,B,C,D> T with(ControllerMethods.ControllerMethod4<A,B,C,D> controllerMethod)
-
with
default <A,B,C,D,E> T with(ControllerMethods.ControllerMethod5<A,B,C,D,E> controllerMethod)
-
with
default <A,B,C,D,E,F> T with(ControllerMethods.ControllerMethod6<A,B,C,D,E,F> controllerMethod)
-
with
default <A,B,C,D,E,F,G> T with(ControllerMethods.ControllerMethod7<A,B,C,D,E,F,G> controllerMethod)
-
with
default <A,B,C,D,E,F,G,H> T with(ControllerMethods.ControllerMethod8<A,B,C,D,E,F,G,H> controllerMethod)
-
with
default <A,B,C,D,E,F,G,H,I> T with(ControllerMethods.ControllerMethod9<A,B,C,D,E,F,G,H,I> controllerMethod)
-
with
default <A,B,C,D,E,F,G,H,I,J> T with(ControllerMethods.ControllerMethod10<A,B,C,D,E,F,G,H,I,J> controllerMethod)
-
-