io.legaldocml.akn.attribute.Time Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import java.time.OffsetDateTime;
/**
* The attribute time is used to give a normalized text for a time according to the XSD syntax HH:MM:SS.
*
* ```xml
*
*
*
*
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Time extends AknObject {
OffsetDateTime getTime();
void setTime(OffsetDateTime time);
}