Class CTCalcCell

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

public class CTCalcCell
extends java.lang.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 java.lang.Boolean a  
    protected java.lang.Integer i  
    protected java.lang.Boolean l  
    protected java.lang.String r  
    protected java.lang.String ref  
    protected java.lang.Boolean s  
    protected java.lang.Boolean t  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTCalcCell()  
  • Method Summary

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

    • r

      protected java.lang.String r
    • ref

      protected java.lang.String ref
    • i

      protected java.lang.Integer i
    • s

      protected java.lang.Boolean s
    • l

      protected java.lang.Boolean l
    • t

      protected java.lang.Boolean t
    • a

      protected java.lang.Boolean a
  • Constructor Details

  • Method Details

    • getR

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

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

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

      public void setRef​(java.lang.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​(java.lang.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​(java.lang.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​(java.lang.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​(java.lang.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​(java.lang.Boolean value)
      Sets the value of the a 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​(javax.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.