Interface AttributeLocalizedEnumType

All Superinterfaces:
AttributeType

public interface AttributeLocalizedEnumType extends AttributeType

Attribute type for localized enum values. Useful for predefined language-specific values selectable in drop-down menus if only one value can be selected. Use AttributeSetType of AttributeLocalizedEnumValue instead if multiple values can be selected.


Example to create an instance using the builder pattern

     AttributeLocalizedEnumType attributeLocalizedEnumType = AttributeLocalizedEnumType.builder()
             .plusValues(valuesBuilder -> valuesBuilder)
             .build()