Interface AttributePlainEnumValue

All Superinterfaces:
WithKey
All Known Implementing Classes:
AttributePlainEnumValueImpl

public interface AttributePlainEnumValue extends WithKey

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


Example to create an instance using the builder pattern

     AttributePlainEnumValue attributePlainEnumValue = AttributePlainEnumValue.builder()
             .key("{key}")
             .label("{label}")
             .build()