Class CTMdx

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

public class CTMdx
extends java.lang.Object
implements Child

Java class for CT_Mdx complex type.

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

 <complexType name="CT_Mdx">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <choice>
         <element name="t" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_MdxTuple"/>
         <element name="ms" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_MdxSet"/>
         <element name="p" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_MdxMemeberProp"/>
         <element name="k" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_MdxKPI"/>
       </choice>
       <attribute name="n" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="f" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_MdxFunctionType" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected STMdxFunctionType f  
    protected CTMdxKPI k  
    protected CTMdxSet ms  
    protected long n  
    protected CTMdxMemeberProp p  
    protected CTMdxTuple t  
  • Constructor Summary

    Constructors
    Constructor Description
    CTMdx()  
  • 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.
    STMdxFunctionType getF()
    Gets the value of the f property.
    CTMdxKPI getK()
    Gets the value of the k property.
    CTMdxSet getMs()
    Gets the value of the ms property.
    long getN()
    Gets the value of the n property.
    CTMdxMemeberProp getP()
    Gets the value of the p property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    CTMdxTuple getT()
    Gets the value of the t property.
    void setF​(STMdxFunctionType value)
    Sets the value of the f property.
    void setK​(CTMdxKPI value)
    Sets the value of the k property.
    void setMs​(CTMdxSet value)
    Sets the value of the ms property.
    void setN​(long value)
    Sets the value of the n property.
    void setP​(CTMdxMemeberProp value)
    Sets the value of the p property.
    void setParent​(java.lang.Object parent)  
    void setT​(CTMdxTuple value)
    Sets the value of the t property.

    Methods inherited from class java.lang.Object

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

  • Constructor Details

    • CTMdx

      public CTMdx()
  • Method Details

    • getT

      public CTMdxTuple getT()
      Gets the value of the t property.
      Returns:
      possible object is CTMdxTuple
    • setT

      public void setT​(CTMdxTuple value)
      Sets the value of the t property.
      Parameters:
      value - allowed object is CTMdxTuple
    • getMs

      public CTMdxSet getMs()
      Gets the value of the ms property.
      Returns:
      possible object is CTMdxSet
    • setMs

      public void setMs​(CTMdxSet value)
      Sets the value of the ms property.
      Parameters:
      value - allowed object is CTMdxSet
    • getP

      public CTMdxMemeberProp getP()
      Gets the value of the p property.
      Returns:
      possible object is CTMdxMemeberProp
    • setP

      public void setP​(CTMdxMemeberProp value)
      Sets the value of the p property.
      Parameters:
      value - allowed object is CTMdxMemeberProp
    • getK

      public CTMdxKPI getK()
      Gets the value of the k property.
      Returns:
      possible object is CTMdxKPI
    • setK

      public void setK​(CTMdxKPI value)
      Sets the value of the k property.
      Parameters:
      value - allowed object is CTMdxKPI
    • getN

      public long getN()
      Gets the value of the n property.
    • setN

      public void setN​(long value)
      Sets the value of the n property.
    • getF

      public STMdxFunctionType getF()
      Gets the value of the f property.
      Returns:
      possible object is STMdxFunctionType
    • setF

      public void setF​(STMdxFunctionType value)
      Sets the value of the f property.
      Parameters:
      value - allowed object is STMdxFunctionType
    • 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.