Class CTFieldGroup

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

public class CTFieldGroup
extends java.lang.Object
implements Child

Java class for CT_FieldGroup complex type.

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

 <complexType name="CT_FieldGroup">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="rangePr" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_RangePr" minOccurs="0"/>
         <element name="discretePr" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_DiscretePr" minOccurs="0"/>
         <element name="groupItems" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_GroupItems" minOccurs="0"/>
       </sequence>
       <attribute name="par" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="base" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.Long base  
    protected CTDiscretePr discretePr  
    protected CTGroupItems groupItems  
    protected java.lang.Long par  
    protected CTRangePr rangePr  
  • Constructor Summary

    Constructors
    Constructor Description
    CTFieldGroup()  
  • Method Summary

    Modifier and Type Method Description
    void afterUnmarshal​(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    java.lang.Long getBase()
    Gets the value of the base property.
    CTDiscretePr getDiscretePr()
    Gets the value of the discretePr property.
    CTGroupItems getGroupItems()
    Gets the value of the groupItems property.
    java.lang.Long getPar()
    Gets the value of the par property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    CTRangePr getRangePr()
    Gets the value of the rangePr property.
    void setBase​(java.lang.Long value)
    Sets the value of the base property.
    void setDiscretePr​(CTDiscretePr value)
    Sets the value of the discretePr property.
    void setGroupItems​(CTGroupItems value)
    Sets the value of the groupItems property.
    void setPar​(java.lang.Long value)
    Sets the value of the par property.
    void setParent​(java.lang.Object parent)  
    void setRangePr​(CTRangePr value)
    Sets the value of the rangePr property.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • rangePr

      protected CTRangePr rangePr
    • discretePr

      protected CTDiscretePr discretePr
    • groupItems

      protected CTGroupItems groupItems
    • par

      protected java.lang.Long par
    • base

      protected java.lang.Long base
  • Constructor Details

    • CTFieldGroup

      public CTFieldGroup()
  • Method Details

    • getRangePr

      public CTRangePr getRangePr()
      Gets the value of the rangePr property.
      Returns:
      possible object is CTRangePr
    • setRangePr

      public void setRangePr​(CTRangePr value)
      Sets the value of the rangePr property.
      Parameters:
      value - allowed object is CTRangePr
    • getDiscretePr

      public CTDiscretePr getDiscretePr()
      Gets the value of the discretePr property.
      Returns:
      possible object is CTDiscretePr
    • setDiscretePr

      public void setDiscretePr​(CTDiscretePr value)
      Sets the value of the discretePr property.
      Parameters:
      value - allowed object is CTDiscretePr
    • getGroupItems

      public CTGroupItems getGroupItems()
      Gets the value of the groupItems property.
      Returns:
      possible object is CTGroupItems
    • setGroupItems

      public void setGroupItems​(CTGroupItems value)
      Sets the value of the groupItems property.
      Parameters:
      value - allowed object is CTGroupItems
    • getPar

      public java.lang.Long getPar()
      Gets the value of the par property.
      Returns:
      possible object is Long
    • setPar

      public void setPar​(java.lang.Long value)
      Sets the value of the par property.
      Parameters:
      value - allowed object is Long
    • getBase

      public java.lang.Long getBase()
      Gets the value of the base property.
      Returns:
      possible object is Long
    • setBase

      public void setBase​(java.lang.Long value)
      Sets the value of the base property.
      Parameters:
      value - allowed object is Long
    • getParent

      public java.lang.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​(java.lang.Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal​(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.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.