Class CTCalculatedMember

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

public class CTCalculatedMember extends Object implements Child

Java class for CT_CalculatedMember complex type.

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

 <complexType name="CT_CalculatedMember">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence minOccurs="0">
         <element name="extLst" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_ExtensionList" minOccurs="0"/>
       </sequence>
       <attribute name="name" use="required" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="mdx" use="required" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="memberName" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="hierarchy" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="parent" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="solveOrder" type="{http://www.w3.org/2001/XMLSchema}int" default="0" />
       <attribute name="set" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTCalculatedMember

      public CTCalculatedMember()
  • Method Details

    • getExtLst

      public CTExtensionList getExtLst()
      Gets the value of the extLst property.
      Returns:
      possible object is CTExtensionList
    • setExtLst

      public void setExtLst(CTExtensionList value)
      Sets the value of the extLst property.
      Parameters:
      value - allowed object is CTExtensionList
    • getName

      public String getName()
      Gets the value of the name property.
      Returns:
      possible object is String
    • setName

      public void setName(String value)
      Sets the value of the name property.
      Parameters:
      value - allowed object is String
    • getMdx

      public String getMdx()
      Gets the value of the mdx property.
      Returns:
      possible object is String
    • setMdx

      public void setMdx(String value)
      Sets the value of the mdx property.
      Parameters:
      value - allowed object is String
    • getMemberName

      public String getMemberName()
      Gets the value of the memberName property.
      Returns:
      possible object is String
    • setMemberName

      public void setMemberName(String value)
      Sets the value of the memberName property.
      Parameters:
      value - allowed object is String
    • getHierarchy

      public String getHierarchy()
      Gets the value of the hierarchy property.
      Returns:
      possible object is String
    • setHierarchy

      public void setHierarchy(String value)
      Sets the value of the hierarchy property.
      Parameters:
      value - allowed object is String
    • getParentAttr

      public String getParentAttr()
      Gets the value of the parent property.
      Returns:
      possible object is String
    • setParent

      public void setParent(String value)
      Sets the value of the parent property.
      Parameters:
      value - allowed object is String
    • getSolveOrder

      public int getSolveOrder()
      Gets the value of the solveOrder property.
      Returns:
      possible object is Integer
    • setSolveOrder

      public void setSolveOrder(Integer value)
      Sets the value of the solveOrder property.
      Parameters:
      value - allowed object is Integer
    • isSet

      public boolean isSet()
      Gets the value of the set property.
      Returns:
      possible object is Boolean
    • setSet

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