Class TimestampType

java.lang.Object
org.docx4j.org.w3.x2003.inkML.TimestampType
All Implemented Interfaces:
Child

public class TimestampType extends Object implements Child
http://www.w3.org/TR/InkML/#timestamp

Java class for timestamp.type complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="timestamp.type">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute ref="{http://www.w3.org/XML/1998/namespace}id use="required""/>
       <attribute name="time" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
       <attribute name="timestampRef" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
       <attribute name="timeString" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
       <attribute name="timeOffset" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" default="0" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • TimestampType

      public TimestampType()
  • Method Details

    • getId

      public String getId()
      Gets the value of the id property.
      Returns:
      possible object is String
    • setId

      public void setId(String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
    • getTime

      public BigInteger getTime()
      Gets the value of the time property.
      Returns:
      possible object is BigInteger
    • setTime

      public void setTime(BigInteger value)
      Sets the value of the time property.
      Parameters:
      value - allowed object is BigInteger
    • getTimestampRef

      public String getTimestampRef()
      Gets the value of the timestampRef property.
      Returns:
      possible object is String
    • setTimestampRef

      public void setTimestampRef(String value)
      Sets the value of the timestampRef property.
      Parameters:
      value - allowed object is String
    • getTimeString

      public XMLGregorianCalendar getTimeString()
      Gets the value of the timeString property.
      Returns:
      possible object is XMLGregorianCalendar
    • setTimeString

      public void setTimeString(XMLGregorianCalendar value)
      Sets the value of the timeString property.
      Parameters:
      value - allowed object is XMLGregorianCalendar
    • getTimeOffset

      public BigInteger getTimeOffset()
      Gets the value of the timeOffset property.
      Returns:
      possible object is BigInteger
    • setTimeOffset

      public void setTimeOffset(BigInteger value)
      Sets the value of the timeOffset property.
      Parameters:
      value - allowed object is BigInteger
    • getParent

      public Object getParent()
      Gets the parent object in the object tree representing the unmarshalled xml document.
      Specified by:
      getParent in interface Child
      Returns:
      The parent object.
    • setParent

      public void setParent(Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent)
      This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.