Package io.micronaut.http.client.bind
Interface TypedClientArgumentRequestBinder<T>
-
- Type Parameters:
T- The argument type
- All Superinterfaces:
ClientArgumentRequestBinder<T>,ClientRequestBinder
public interface TypedClientArgumentRequestBinder<T> extends ClientArgumentRequestBinder<T>
AClientArgumentRequestBinderthat is resolved based on the argument type.- Since:
- 2.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description io.micronaut.core.type.Argument<T>argumentType()default java.util.List<java.lang.Class<?>>superTypes()Returns additional super types.-
Methods inherited from interface io.micronaut.http.client.bind.ClientArgumentRequestBinder
bind
-
-
-
-
Method Detail
-
argumentType
@NonNull io.micronaut.core.type.Argument<T> argumentType()
- Returns:
- The argument type.
-
superTypes
@NonNull default java.util.List<java.lang.Class<?>> superTypes()
Returns additional super types.- Returns:
- Additional supers types
-
-