All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy