Interface AttributeLocalizedEnumValue

All Superinterfaces:
WithKey
All Known Implementing Classes:
AttributeLocalizedEnumValueImpl

public interface AttributeLocalizedEnumValue extends WithKey

A localized enum value must be unique within the enum, else a DuplicateEnumValues error is returned.


Example to create an instance using the builder pattern

     AttributeLocalizedEnumValue attributeLocalizedEnumValue = AttributeLocalizedEnumValue.builder()
             .key("{key}")
             .label(labelBuilder -> labelBuilder)
             .build()