Class CTDateGroupItem

java.lang.Object
org.xlsx4j.sml.CTDateGroupItem
All Implemented Interfaces:
Child

public class CTDateGroupItem extends Object implements Child

Java class for CT_DateGroupItem complex type.

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

 <complexType name="CT_DateGroupItem">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="year" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
       <attribute name="month" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
       <attribute name="day" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
       <attribute name="hour" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
       <attribute name="minute" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
       <attribute name="second" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
       <attribute name="dateTimeGrouping" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_DateTimeGrouping" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTDateGroupItem

      public CTDateGroupItem()
  • Method Details

    • getYear

      public int getYear()
      Gets the value of the year property.
    • setYear

      public void setYear(int value)
      Sets the value of the year property.
    • getMonth

      public Integer getMonth()
      Gets the value of the month property.
      Returns:
      possible object is Integer
    • setMonth

      public void setMonth(Integer value)
      Sets the value of the month property.
      Parameters:
      value - allowed object is Integer
    • getDay

      public Integer getDay()
      Gets the value of the day property.
      Returns:
      possible object is Integer
    • setDay

      public void setDay(Integer value)
      Sets the value of the day property.
      Parameters:
      value - allowed object is Integer
    • getHour

      public Integer getHour()
      Gets the value of the hour property.
      Returns:
      possible object is Integer
    • setHour

      public void setHour(Integer value)
      Sets the value of the hour property.
      Parameters:
      value - allowed object is Integer
    • getMinute

      public Integer getMinute()
      Gets the value of the minute property.
      Returns:
      possible object is Integer
    • setMinute

      public void setMinute(Integer value)
      Sets the value of the minute property.
      Parameters:
      value - allowed object is Integer
    • getSecond

      public Integer getSecond()
      Gets the value of the second property.
      Returns:
      possible object is Integer
    • setSecond

      public void setSecond(Integer value)
      Sets the value of the second property.
      Parameters:
      value - allowed object is Integer
    • getDateTimeGrouping

      public STDateTimeGrouping getDateTimeGrouping()
      Gets the value of the dateTimeGrouping property.
      Returns:
      possible object is STDateTimeGrouping
    • setDateTimeGrouping

      public void setDateTimeGrouping(STDateTimeGrouping value)
      Sets the value of the dateTimeGrouping property.
      Parameters:
      value - allowed object is STDateTimeGrouping
    • 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.