Interface LocalizableEnumAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
LocalizableEnumAttributeImpl

public interface LocalizableEnumAttribute extends Attribute

This type represents an attribute whose value is a localized enum. The attribute value refers to the key of the enum value.


Example to create an instance using the builder pattern

     LocalizableEnumAttribute localizableEnumAttribute = LocalizableEnumAttribute.builder()
             .value("{value}")
             .build()