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

org.w3._2001.xmlschema.Adapter1 Maven / Gradle / Ivy

The newest version!

package org.w3._2001.xmlschema;

import java.time.ZonedDateTime;
import javax.xml.bind.annotation.adapters.XmlAdapter;

public class Adapter1
    extends XmlAdapter
{


    public ZonedDateTime unmarshal(String value) {
        return (org.meridor.perspective.beans.DateTimeAdapter.parseDate(value));
    }

    public String marshal(ZonedDateTime value) {
        return (org.meridor.perspective.beans.DateTimeAdapter.printDate(value));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy