Class JsonMarshaller<T>

java.lang.Object
com.amazonaws.services.dynamodbv2.datamodeling.JsonMarshaller<T>
All Implemented Interfaces:
DynamoDBMarshaller<T>

public class JsonMarshaller<T> extends Object implements DynamoDBMarshaller<T>
A simple JSON marshaller that uses the Jackson JSON processor. It shares all limitations of that library. For more information about Jackson, see: http://wiki.fasterxml.com/JacksonHome
  • Constructor Details

    • JsonMarshaller

      public JsonMarshaller(Class<T> valueType)
      Constructs the JSON marshaller instance.
      Parameters:
      valueType - The value type (for generic type erasure).
    • JsonMarshaller

      public JsonMarshaller()
      Constructs the JSON marshaller instance.
  • Method Details