Interface TimeAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
TimeAttributeImpl

public interface TimeAttribute extends Attribute

This type represents an attribute whose value is a time.


Example to create an instance using the builder pattern

     TimeAttribute timeAttribute = TimeAttribute.builder()
             .value(LocalTime.parse("12:00:00.301"))
             .build()