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

io.legaldocml.akn.attribute.Date Maven / Gradle / Ivy

The newest version!
package io.legaldocml.akn.attribute;

import io.legaldocml.akn.AknObject;

import java.time.OffsetDateTime;

/**
 * The attribute date is used to give a normalized value for a date according to the XSD syntax YYYY-MM-DD or a
 * normalized value for a dateTime according to the XSD syntax YYYY-MM-DDThh:mm:ss(zzzz).
 *
 * ```xml
 * 
 *   
 * 	   
 *       
 *     
 *   
 * 
 * ```
 *
 * @author Jacques Militello
 */
public interface Date extends AknObject {

    OffsetDateTime getDate();

    void setDate(OffsetDateTime date);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy