Class StaticTableSchema.Builder<T>

java.lang.Object
software.amazon.awssdk.enhanced.dynamodb.mapper.StaticTableSchema.Builder<T>
Type Parameters:
T - The data item type that the StaticTableSchema this builder will build is to map to.
Enclosing class:
StaticTableSchema<T>

@NotThreadSafe public static final class StaticTableSchema.Builder<T> extends Object
Builder for a StaticTableSchema
  • Method Details

    • newItemSupplier

      public StaticTableSchema.Builder<T> newItemSupplier(Supplier<T> newItemSupplier)
      A function that can be used to create new instances of the data item class.
    • attributes

      @SafeVarargs public final StaticTableSchema.Builder<T> attributes(StaticAttribute<T,?>... staticAttributes)
      A list of attributes that can be mapped between the data item object and the database record that are to be associated with the schema. Will overwrite any existing attributes.
    • attributes

      public StaticTableSchema.Builder<T> attributes(Collection<StaticAttribute<T,?>> staticAttributes)
      A list of attributes that can be mapped between the data item object and the database record that are to be associated with the schema. Will overwrite any existing attributes.
    • addAttribute

      public <R> StaticTableSchema.Builder<T> addAttribute(EnhancedType<R> attributeType, Consumer<StaticAttribute.Builder<T,R>> staticAttribute)
      Adds a single attribute to the table schema that can be mapped between the data item object and the database record.
    • addAttribute

      public <R> StaticTableSchema.Builder<T> addAttribute(Class<R> attributeClass, Consumer<StaticAttribute.Builder<T,R>> staticAttribute)
      Adds a single attribute to the table schema that can be mapped between the data item object and the database record.
    • addAttribute

      public StaticTableSchema.Builder<T> addAttribute(StaticAttribute<T,?> staticAttribute)
      Adds a single attribute to the table schema that can be mapped between the data item object and the database record.
    • flatten

      public <R> StaticTableSchema.Builder<T> flatten(TableSchema<R> otherTableSchema, Function<T,R> otherItemGetter, BiConsumer<T,R> otherItemSetter)
      Flattens all the attributes defined in another StaticTableSchema into the database record this schema maps to. Functions to get and set an object that the flattened schema maps to is required.
    • extend

      public StaticTableSchema.Builder<T> extend(StaticTableSchema<? super T> superTableSchema)
      Extends the StaticTableSchema of a super-class, effectively rolling all the attributes modelled by the super-class into the StaticTableSchema of the sub-class.
    • tags

      public StaticTableSchema.Builder<T> tags(StaticTableTag... staticTableTags)
      Associate one or more StaticTableTag with this schema. See documentation on the tags themselves to understand what each one does. This method will overwrite any existing table tags.
    • tags

      public StaticTableSchema.Builder<T> tags(Collection<StaticTableTag> staticTableTags)
      Associate one or more StaticTableTag with this schema. See documentation on the tags themselves to understand what each one does. This method will overwrite any existing table tags.
    • addTag

      public StaticTableSchema.Builder<T> addTag(StaticTableTag staticTableTag)
      Associates a StaticTableTag with this schema. See documentation on the tags themselves to understand what each one does. This method will add the tag to the list of existing table tags.
    • attributeConverterProviders

      public StaticTableSchema.Builder<T> attributeConverterProviders(AttributeConverterProvider... attributeConverterProviders)
      Specifies the AttributeConverterProviders to use with the table schema. The list of attribute converter providers must provide AttributeConverters for all types used in the schema. The attribute converter providers will be loaded in the strict order they are supplied here.

      Calling this method will override the default attribute converter provider DefaultAttributeConverterProvider, which provides standard converters for most primitive and common Java types, so that provider must included in the supplied list if it is to be used. Providing an empty list here will cause no providers to get loaded.

      Adding one custom attribute converter provider and using the default as fallback: builder.attributeConverterProviders(customAttributeConverter, AttributeConverterProvider.defaultProvider())

      Parameters:
      attributeConverterProviders - a list of attribute converter providers to use with the table schema
    • attributeConverterProviders

      public StaticTableSchema.Builder<T> attributeConverterProviders(List<AttributeConverterProvider> attributeConverterProviders)
      Specifies the AttributeConverterProviders to use with the table schema. The list of attribute converter providers must provide AttributeConverters for all types used in the schema. The attribute converter providers will be loaded in the strict order they are supplied here.

      Calling this method will override the default attribute converter provider DefaultAttributeConverterProvider, which provides standard converters for most primitive and common Java types, so that provider must included in the supplied list if it is to be used. Providing an empty list here will cause no providers to get loaded.

      Adding one custom attribute converter provider and using the default as fallback: List<AttributeConverterProvider> providers = new ArrayList<>( customAttributeConverter, AttributeConverterProvider.defaultProvider()); builder.attributeConverterProviders(providers);

      Parameters:
      attributeConverterProviders - a list of attribute converter providers to use with the table schema
    • build

      public StaticTableSchema<T> build()
      Builds a StaticTableSchema based on the values this builder has been configured with