Class SimpleTypeQueryUnmarshaller<T>
- java.lang.Object
-
- software.amazon.awssdk.protocols.query.internal.unmarshall.SimpleTypeQueryUnmarshaller<T>
-
- Type Parameters:
T- Type being unmarshalled.
- All Implemented Interfaces:
QueryUnmarshaller<T>
@SdkInternalApi public final class SimpleTypeQueryUnmarshaller<T> extends Object implements QueryUnmarshaller<T>
Unmarshaller implementation for simple, scalar values.
-
-
Constructor Summary
Constructors Constructor Description SimpleTypeQueryUnmarshaller(StringToValueConverter.StringToValue<T> stringToValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Tunmarshall(QueryUnmarshallerContext context, List<XmlElement> content, SdkField<T> field)
-
-
-
Constructor Detail
-
SimpleTypeQueryUnmarshaller
public SimpleTypeQueryUnmarshaller(StringToValueConverter.StringToValue<T> stringToValue)
-
-
Method Detail
-
unmarshall
public T unmarshall(QueryUnmarshallerContext context, List<XmlElement> content, SdkField<T> field)
- Specified by:
unmarshallin interfaceQueryUnmarshaller<T>- Parameters:
context- Context containing dependencies and unmarshaller registry.content- Parsed JSON content of body. May be null for REST JSON based services that don't have payload members.field-SdkFieldof member being unmarshalled.- Returns:
- Unmarshalled value.
-
-