Class CTDataConsolidate

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

public class CTDataConsolidate
extends java.lang.Object
implements Child

Java class for CT_DataConsolidate complex type.

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

 <complexType name="CT_DataConsolidate">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="dataRefs" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_DataRefs" minOccurs="0"/>
       </sequence>
       <attribute name="function" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_DataConsolidateFunction" default="sum" />
       <attribute name="startLabels" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="leftLabels" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="topLabels" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="link" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected CTDataRefs dataRefs  
    protected STDataConsolidateFunction function  
    protected java.lang.Boolean leftLabels  
    protected java.lang.Boolean link  
    protected java.lang.Boolean startLabels  
    protected java.lang.Boolean topLabels  
  • Constructor Summary

    Constructors
    Constructor Description
    CTDataConsolidate()  
  • 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.
    CTDataRefs getDataRefs()
    Gets the value of the dataRefs property.
    STDataConsolidateFunction getFunction()
    Gets the value of the function property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    boolean isLeftLabels()
    Gets the value of the leftLabels property.
    boolean isLink()
    Gets the value of the link property.
    boolean isStartLabels()
    Gets the value of the startLabels property.
    boolean isTopLabels()
    Gets the value of the topLabels property.
    void setDataRefs​(CTDataRefs value)
    Sets the value of the dataRefs property.
    void setFunction​(STDataConsolidateFunction value)
    Sets the value of the function property.
    void setLeftLabels​(java.lang.Boolean value)
    Sets the value of the leftLabels property.
    void setLink​(java.lang.Boolean value)
    Sets the value of the link property.
    void setParent​(java.lang.Object parent)  
    void setStartLabels​(java.lang.Boolean value)
    Sets the value of the startLabels property.
    void setTopLabels​(java.lang.Boolean value)
    Sets the value of the topLabels property.

    Methods inherited from class java.lang.Object

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

    • dataRefs

      protected CTDataRefs dataRefs
    • function

      protected STDataConsolidateFunction function
    • startLabels

      protected java.lang.Boolean startLabels
    • leftLabels

      protected java.lang.Boolean leftLabels
    • topLabels

      protected java.lang.Boolean topLabels
  • Constructor Details

    • CTDataConsolidate

      public CTDataConsolidate()
  • Method Details

    • getDataRefs

      public CTDataRefs getDataRefs()
      Gets the value of the dataRefs property.
      Returns:
      possible object is CTDataRefs
    • setDataRefs

      public void setDataRefs​(CTDataRefs value)
      Sets the value of the dataRefs property.
      Parameters:
      value - allowed object is CTDataRefs
    • getFunction

      public STDataConsolidateFunction getFunction()
      Gets the value of the function property.
      Returns:
      possible object is STDataConsolidateFunction
    • setFunction

      public void setFunction​(STDataConsolidateFunction value)
      Sets the value of the function property.
      Parameters:
      value - allowed object is STDataConsolidateFunction
    • isStartLabels

      public boolean isStartLabels()
      Gets the value of the startLabels property.
      Returns:
      possible object is Boolean
    • setStartLabels

      public void setStartLabels​(java.lang.Boolean value)
      Sets the value of the startLabels property.
      Parameters:
      value - allowed object is Boolean
    • isLeftLabels

      public boolean isLeftLabels()
      Gets the value of the leftLabels property.
      Returns:
      possible object is Boolean
    • setLeftLabels

      public void setLeftLabels​(java.lang.Boolean value)
      Sets the value of the leftLabels property.
      Parameters:
      value - allowed object is Boolean
    • isTopLabels

      public boolean isTopLabels()
      Gets the value of the topLabels property.
      Returns:
      possible object is Boolean
    • setTopLabels

      public void setTopLabels​(java.lang.Boolean value)
      Sets the value of the topLabels property.
      Parameters:
      value - allowed object is Boolean
    • isLink

      public boolean isLink()
      Gets the value of the link property.
      Returns:
      possible object is Boolean
    • setLink

      public void setLink​(java.lang.Boolean value)
      Sets the value of the link property.
      Parameters:
      value - allowed object is Boolean
    • 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.