Interface TextSetAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
TextSetAttributeImpl

public interface TextSetAttribute extends Attribute

This type represents an attribute whose value is a set of strings.


Example to create an instance using the builder pattern

     TextSetAttribute textSetAttribute = TextSetAttribute.builder()
             .plusValue(valueBuilder -> valueBuilder)
             .build()