Uses of Interface
software.amazon.awssdk.protocols.query.internal.marshall.QueryMarshaller
-
Packages that use QueryMarshaller Package Description software.amazon.awssdk.protocols.query.internal.marshall -
-
Uses of QueryMarshaller in software.amazon.awssdk.protocols.query.internal.marshall
Classes in software.amazon.awssdk.protocols.query.internal.marshall that implement QueryMarshaller Modifier and Type Class Description class
ListQueryMarshaller
Marshaller for list types.class
MapQueryMarshaller
class
SimpleTypeQueryMarshaller<T>
Simple implementation ofQueryMarshaller
that converts a given value to a string usingStringToValueConverter.StringToValue
and emits it as a query param.Fields in software.amazon.awssdk.protocols.query.internal.marshall declared as QueryMarshaller Modifier and Type Field Description static QueryMarshaller<Boolean>
SimpleTypeQueryMarshaller. BOOLEAN
static QueryMarshaller<Double>
SimpleTypeQueryMarshaller. DOUBLE
static QueryMarshaller<Float>
SimpleTypeQueryMarshaller. FLOAT
static QueryMarshaller<Instant>
SimpleTypeQueryMarshaller. INSTANT
static QueryMarshaller<Integer>
SimpleTypeQueryMarshaller. INTEGER
static QueryMarshaller<Long>
SimpleTypeQueryMarshaller. LONG
static QueryMarshaller<Void>
SimpleTypeQueryMarshaller. NULL
static QueryMarshaller<SdkBytes>
SimpleTypeQueryMarshaller. SDK_BYTES
static QueryMarshaller<Short>
SimpleTypeQueryMarshaller. SHORT
static QueryMarshaller<String>
SimpleTypeQueryMarshaller. STRING
Methods in software.amazon.awssdk.protocols.query.internal.marshall that return QueryMarshaller Modifier and Type Method Description <T> QueryMarshaller<Object>
QueryMarshallerRegistry. getMarshaller(MarshallingType<T> marshallingType, Object val)
<T> QueryMarshaller<Object>
QueryMarshallerRegistry. getMarshaller(T val)
Methods in software.amazon.awssdk.protocols.query.internal.marshall with parameters of type QueryMarshaller Modifier and Type Method Description <T> QueryMarshallerRegistry.Builder
QueryMarshallerRegistry.Builder. marshaller(MarshallingType<T> marshallingType, QueryMarshaller<T> marshaller)
Registers a marshaller of the given type.
-