Interface StaticAttributeTag

    • Method Detail

      • modifyMetadata

        Consumer<StaticTableMetadata.Builder> modifyMetadata​(String attributeName,
                                                             AttributeValueType attributeValueType)
        A function that modifies an existing StaticTableSchema.Builder when this tag is applied to a specific attribute. This will be used by the StaticTableSchema to capture all the metadata associated with tagged attributes when constructing the table schema.
        Parameters:
        attributeName - The name of the attribute this tag has been applied to.
        attributeValueType - The type of the attribute this tag has been applied to. This can be used for validation, for instance if you have an attribute tag that should only be associated with a string.
        Returns:
        a consumer that modifies an existing StaticTableSchema.Builder.
      • validateType

        default <R> void validateType​(String attributeName,
                                      EnhancedType<R> enhancedType,
                                      AttributeValueType attributeValueType)
        Function that validates the Converted return type is suitable for the extension.
        Type Parameters:
        R - the class that the value of this attribute converts to.
        Parameters:
        attributeName - The name of the attribute this tag has been applied to.
        enhancedType - The type of the object to be converted
        attributeValueType - Attribute Value type of the attribute.