Interface BooleanSetAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
BooleanSetAttributeImpl

public interface BooleanSetAttribute extends Attribute

This type represents an attribute whose value is set of boolean values.


Example to create an instance using the builder pattern

     BooleanSetAttribute booleanSetAttribute = BooleanSetAttribute.builder()
             .plusValue(valueBuilder -> valueBuilder)
             .build()