Class CTParameter

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

public class CTParameter extends Object implements Child

Java class for CT_Parameter complex type.

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

 <complexType name="CT_Parameter">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="name" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="sqlType" type="{http://www.w3.org/2001/XMLSchema}int" default="0" />
       <attribute name="parameterType" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_ParameterType" default="prompt" />
       <attribute name="refreshOnChange" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="prompt" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="boolean" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="double" type="{http://www.w3.org/2001/XMLSchema}double" />
       <attribute name="integer" type="{http://www.w3.org/2001/XMLSchema}int" />
       <attribute name="string" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="cell" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • name

      protected String name
    • sqlType

      protected Integer sqlType
    • parameterType

      protected STParameterType parameterType
    • refreshOnChange

      protected Boolean refreshOnChange
    • prompt

      protected String prompt
    • _boolean

      protected Boolean _boolean
    • _double

      protected Double _double
    • integer

      protected Integer integer
    • string

      protected String string
    • cell

      protected String cell
  • Constructor Details

    • CTParameter

      public CTParameter()
  • Method Details

    • 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
    • getSqlType

      public int getSqlType()
      Gets the value of the sqlType property.
      Returns:
      possible object is Integer
    • setSqlType

      public void setSqlType(Integer value)
      Sets the value of the sqlType property.
      Parameters:
      value - allowed object is Integer
    • getParameterType

      public STParameterType getParameterType()
      Gets the value of the parameterType property.
      Returns:
      possible object is STParameterType
    • setParameterType

      public void setParameterType(STParameterType value)
      Sets the value of the parameterType property.
      Parameters:
      value - allowed object is STParameterType
    • isRefreshOnChange

      public boolean isRefreshOnChange()
      Gets the value of the refreshOnChange property.
      Returns:
      possible object is Boolean
    • setRefreshOnChange

      public void setRefreshOnChange(Boolean value)
      Sets the value of the refreshOnChange property.
      Parameters:
      value - allowed object is Boolean
    • getPrompt

      public String getPrompt()
      Gets the value of the prompt property.
      Returns:
      possible object is String
    • setPrompt

      public void setPrompt(String value)
      Sets the value of the prompt property.
      Parameters:
      value - allowed object is String
    • isBoolean

      public Boolean isBoolean()
      Gets the value of the boolean property.
      Returns:
      possible object is Boolean
    • setBoolean

      public void setBoolean(Boolean value)
      Sets the value of the boolean property.
      Parameters:
      value - allowed object is Boolean
    • getDouble

      public Double getDouble()
      Gets the value of the double property.
      Returns:
      possible object is Double
    • setDouble

      public void setDouble(Double value)
      Sets the value of the double property.
      Parameters:
      value - allowed object is Double
    • getInteger

      public Integer getInteger()
      Gets the value of the integer property.
      Returns:
      possible object is Integer
    • setInteger

      public void setInteger(Integer value)
      Sets the value of the integer property.
      Parameters:
      value - allowed object is Integer
    • getString

      public String getString()
      Gets the value of the string property.
      Returns:
      possible object is String
    • setString

      public void setString(String value)
      Sets the value of the string property.
      Parameters:
      value - allowed object is String
    • getCell

      public String getCell()
      Gets the value of the cell property.
      Returns:
      possible object is String
    • setCell

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