Class CTDataBinding

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

public class CTDataBinding extends Object implements Child

Java class for CT_DataBinding complex type.

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

 <complexType name="CT_DataBinding">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <any/>
       </sequence>
       <attribute name="DataBindingName" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="FileBinding" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="ConnectionID" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="FileBindingName" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="DataBindingLoadMode" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • any

      protected Object any
    • dataBindingName

      protected String dataBindingName
    • fileBinding

      protected Boolean fileBinding
    • connectionID

      protected Long connectionID
    • fileBindingName

      protected String fileBindingName
    • dataBindingLoadMode

      protected long dataBindingLoadMode
  • Constructor Details

    • CTDataBinding

      public CTDataBinding()
  • Method Details

    • getAny

      public Object getAny()
      Gets the value of the any property.
      Returns:
      possible object is Object
    • setAny

      public void setAny(Object value)
      Sets the value of the any property.
      Parameters:
      value - allowed object is Object
    • getDataBindingName

      public String getDataBindingName()
      Gets the value of the dataBindingName property.
      Returns:
      possible object is String
    • setDataBindingName

      public void setDataBindingName(String value)
      Sets the value of the dataBindingName property.
      Parameters:
      value - allowed object is String
    • isFileBinding

      public Boolean isFileBinding()
      Gets the value of the fileBinding property.
      Returns:
      possible object is Boolean
    • setFileBinding

      public void setFileBinding(Boolean value)
      Sets the value of the fileBinding property.
      Parameters:
      value - allowed object is Boolean
    • getConnectionID

      public Long getConnectionID()
      Gets the value of the connectionID property.
      Returns:
      possible object is Long
    • setConnectionID

      public void setConnectionID(Long value)
      Sets the value of the connectionID property.
      Parameters:
      value - allowed object is Long
    • getFileBindingName

      public String getFileBindingName()
      Gets the value of the fileBindingName property.
      Returns:
      possible object is String
    • setFileBindingName

      public void setFileBindingName(String value)
      Sets the value of the fileBindingName property.
      Parameters:
      value - allowed object is String
    • getDataBindingLoadMode

      public long getDataBindingLoadMode()
      Gets the value of the dataBindingLoadMode property.
    • setDataBindingLoadMode

      public void setDataBindingLoadMode(long value)
      Sets the value of the dataBindingLoadMode property.
    • 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.