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. |
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.Copyright © 2020. All rights reserved.