Class DurationXmlAdapter


  • public class DurationXmlAdapter
    extends javax.xml.bind.annotation.adapters.XmlAdapter<java.lang.String,​java.time.Duration>
    XmlAdapter mapping JSR-310 Duration to ISO-8601 string

    String format details:

    • Duration.parse(java.lang.CharSequence)
    • Duration.toString()
    See Also:
    XmlAdapter, Duration
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String marshal​(java.time.Duration value)  
      java.time.Duration unmarshal​(java.lang.String stringValue)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DurationXmlAdapter

        public DurationXmlAdapter()
    • Method Detail

      • unmarshal

        public java.time.Duration unmarshal​(java.lang.String stringValue)
        Specified by:
        unmarshal in class javax.xml.bind.annotation.adapters.XmlAdapter<java.lang.String,​java.time.Duration>
      • marshal

        public java.lang.String marshal​(java.time.Duration value)
        Specified by:
        marshal in class javax.xml.bind.annotation.adapters.XmlAdapter<java.lang.String,​java.time.Duration>