@ThreadSafe public interface StaticAttributeTag
StaticAttribute. When a tagged attribute is added to a
TableSchema, the table metadata stored on the schema will be updated
by calling the modifyMetadata(String, AttributeValueType) method for every tag associated with the
attribute.
Common implementations of this interface that can be used to declare indices in your schema can be found in
StaticAttributeTags.
| Modifier and Type | Method and Description |
|---|---|
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. |
default <R> void |
validateType(String attributeName,
EnhancedType<R> enhancedType,
AttributeValueType attributeValueType)
Function that validates the Converted return type is suitable for the extension.
|
Consumer<StaticTableMetadata.Builder> modifyMetadata(String attributeName, AttributeValueType attributeValueType)
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.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.StaticTableSchema.Builder.default <R> void validateType(String attributeName, EnhancedType<R> enhancedType, AttributeValueType attributeValueType)
R - the class that the value of this attribute converts to.attributeName - The name of the attribute this tag has been applied to.enhancedType - The type of the object to be convertedattributeValueType - Attribute Value type of the attribute.Copyright © 2023. All rights reserved.