Interface ReferenceAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
ReferenceAttributeImpl

public interface ReferenceAttribute extends Attribute

This type represents an attribute whose value is a key reference.


Example to create an instance using the builder pattern

     ReferenceAttribute referenceAttribute = ReferenceAttribute.builder()
             .value(valueBuilder -> valueBuilder)
             .build()