Interface NumberAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
NumberAttributeImpl

public interface NumberAttribute extends Attribute

This type represents an attribute whose value is a number.


Example to create an instance using the builder pattern

     NumberAttribute numberAttribute = NumberAttribute.builder()
             .value(0.3)
             .build()