Class CTRangePr

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

public class CTRangePr extends Object implements Child

Java class for CT_RangePr complex type.

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

 <complexType name="CT_RangePr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="autoStart" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="autoEnd" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="groupBy" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_GroupBy" default="range" />
       <attribute name="startNum" type="{http://www.w3.org/2001/XMLSchema}double" />
       <attribute name="endNum" type="{http://www.w3.org/2001/XMLSchema}double" />
       <attribute name="startDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
       <attribute name="endDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
       <attribute name="groupInterval" type="{http://www.w3.org/2001/XMLSchema}double" default="1" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTRangePr

      public CTRangePr()
  • Method Details

    • isAutoStart

      public boolean isAutoStart()
      Gets the value of the autoStart property.
      Returns:
      possible object is Boolean
    • setAutoStart

      public void setAutoStart(Boolean value)
      Sets the value of the autoStart property.
      Parameters:
      value - allowed object is Boolean
    • isAutoEnd

      public boolean isAutoEnd()
      Gets the value of the autoEnd property.
      Returns:
      possible object is Boolean
    • setAutoEnd

      public void setAutoEnd(Boolean value)
      Sets the value of the autoEnd property.
      Parameters:
      value - allowed object is Boolean
    • getGroupBy

      public STGroupBy getGroupBy()
      Gets the value of the groupBy property.
      Returns:
      possible object is STGroupBy
    • setGroupBy

      public void setGroupBy(STGroupBy value)
      Sets the value of the groupBy property.
      Parameters:
      value - allowed object is STGroupBy
    • getStartNum

      public Double getStartNum()
      Gets the value of the startNum property.
      Returns:
      possible object is Double
    • setStartNum

      public void setStartNum(Double value)
      Sets the value of the startNum property.
      Parameters:
      value - allowed object is Double
    • getEndNum

      public Double getEndNum()
      Gets the value of the endNum property.
      Returns:
      possible object is Double
    • setEndNum

      public void setEndNum(Double value)
      Sets the value of the endNum property.
      Parameters:
      value - allowed object is Double
    • getStartDate

      public XMLGregorianCalendar getStartDate()
      Gets the value of the startDate property.
      Returns:
      possible object is XMLGregorianCalendar
    • setStartDate

      public void setStartDate(XMLGregorianCalendar value)
      Sets the value of the startDate property.
      Parameters:
      value - allowed object is XMLGregorianCalendar
    • getEndDate

      public XMLGregorianCalendar getEndDate()
      Gets the value of the endDate property.
      Returns:
      possible object is XMLGregorianCalendar
    • setEndDate

      public void setEndDate(XMLGregorianCalendar value)
      Sets the value of the endDate property.
      Parameters:
      value - allowed object is XMLGregorianCalendar
    • getGroupInterval

      public double getGroupInterval()
      Gets the value of the groupInterval property.
      Returns:
      possible object is Double
    • setGroupInterval

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