Class CTCalcCell

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

public class CTCalcCell extends Object implements Child

Java class for CT_CalcCell complex type.

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

 <complexType name="CT_CalcCell">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="r" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_CellRef" />
       <attribute name="ref" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_CellRef" />
       <attribute name="i" type="{http://www.w3.org/2001/XMLSchema}int" default="0" />
       <attribute name="s" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="l" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="t" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="a" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected Boolean
     
    protected Integer
     
    protected Boolean
     
    protected String
     
    protected String
     
    protected Boolean
     
    protected Boolean
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    int
    Gets the value of the i property.
    Gets the parent object in the object tree representing the unmarshalled xml document.
    Gets the value of the r property.
    Gets the value of the ref property.
    boolean
    isA()
    Gets the value of the a property.
    boolean
    isL()
    Gets the value of the l property.
    boolean
    isS()
    Gets the value of the s property.
    boolean
    isT()
    Gets the value of the t property.
    void
    setA(Boolean value)
    Sets the value of the a property.
    void
    setI(Integer value)
    Sets the value of the i property.
    void
    setL(Boolean value)
    Sets the value of the l property.
    void
    setParent(Object parent)
     
    void
    setR(String value)
    Sets the value of the r property.
    void
    setRef(String value)
    Sets the value of the ref property.
    void
    setS(Boolean value)
    Sets the value of the s property.
    void
    setT(Boolean 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

    • CTCalcCell

      public CTCalcCell()
  • Method Details

    • getR

      public String getR()
      Gets the value of the r property.
      Returns:
      possible object is String
    • setR

      public void setR(String value)
      Sets the value of the r property.
      Parameters:
      value - allowed object is String
    • getRef

      public String getRef()
      Gets the value of the ref property.
      Returns:
      possible object is String
    • setRef

      public void setRef(String value)
      Sets the value of the ref property.
      Parameters:
      value - allowed object is String
    • getI

      public int getI()
      Gets the value of the i property.
      Returns:
      possible object is Integer
    • setI

      public void setI(Integer value)
      Sets the value of the i property.
      Parameters:
      value - allowed object is Integer
    • isS

      public boolean isS()
      Gets the value of the s property.
      Returns:
      possible object is Boolean
    • setS

      public void setS(Boolean value)
      Sets the value of the s property.
      Parameters:
      value - allowed object is Boolean
    • isL

      public boolean isL()
      Gets the value of the l property.
      Returns:
      possible object is Boolean
    • setL

      public void setL(Boolean value)
      Sets the value of the l property.
      Parameters:
      value - allowed object is Boolean
    • isT

      public boolean isT()
      Gets the value of the t property.
      Returns:
      possible object is Boolean
    • setT

      public void setT(Boolean value)
      Sets the value of the t property.
      Parameters:
      value - allowed object is Boolean
    • isA

      public boolean isA()
      Gets the value of the a property.
      Returns:
      possible object is Boolean
    • setA

      public void setA(Boolean value)
      Sets the value of the a 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.