Interface EnumSetAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
EnumSetAttributeImpl

public interface EnumSetAttribute extends Attribute

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


Example to create an instance using the builder pattern

     EnumSetAttribute enumSetAttribute = EnumSetAttribute.builder()
             .plusValue(valueBuilder -> valueBuilder)
             .build()