Interface BooleanAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
BooleanAttributeImpl

public interface BooleanAttribute extends Attribute

This type represents an attribute whose value is either "true" or "false".


Example to create an instance using the builder pattern

     BooleanAttribute booleanAttribute = BooleanAttribute.builder()
             .value(true)
             .build()