Interface ConversionSchema


public interface ConversionSchema
A strategy for mapping between Java types and DynamoDB types. Serves as a factory for ItemConverter instances that implement this mapping. Standard implementations are available in the ConversionSchemas class.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static class 
    Dependency injection for the ItemConverters that this ConversionSchema generates.
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates an ItemConverter, injecting dependencies from the DynamoDBMapper that needs it.
  • Method Details

    • getConverter

      ItemConverter getConverter(ConversionSchema.Dependencies dependencies)
      Creates an ItemConverter, injecting dependencies from the DynamoDBMapper that needs it.
      Parameters:
      dependencies - the dependencies to inject
      Returns:
      a new ItemConverter