com.amazonaws.services.dynamodbv2.datamodeling
Interface DynamoDBMarshaller<T>

All Known Implementing Classes:
JsonMarshaller

Deprecated. These classes have been deprecated, please use the classes in the com.amazonaws.mobileconnectors namespace.

public interface DynamoDBMarshaller<T>

Marshaller interface for storing complex types in DynamoDB as Strings. Implementors provide methods to transform instances of a class to and from Strings.


Method Summary
 java.lang.String marshall(T getterReturnResult)
          Deprecated. Turns an object of type T into its String representation.
 T unmarshall(java.lang.Class<T> clazz, java.lang.String obj)
          Deprecated. Turns a String representation of an object of type T into an object.
 

Method Detail

marshall

java.lang.String marshall(T getterReturnResult)
Deprecated. 
Turns an object of type T into its String representation.


unmarshall

T unmarshall(java.lang.Class<T> clazz,
             java.lang.String obj)
Deprecated. 
Turns a String representation of an object of type T into an object.



Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.