Class CTDataBinding

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

public class CTDataBinding
extends java.lang.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 Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.Object any  
    protected java.lang.Long connectionID  
    protected long dataBindingLoadMode  
    protected java.lang.String dataBindingName  
    protected java.lang.Boolean fileBinding  
    protected java.lang.String fileBindingName  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTDataBinding()  
  • 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.
    java.lang.Object getAny()
    Gets the value of the any property.
    java.lang.Long getConnectionID()
    Gets the value of the connectionID property.
    long getDataBindingLoadMode()
    Gets the value of the dataBindingLoadMode property.
    java.lang.String getDataBindingName()
    Gets the value of the dataBindingName property.
    java.lang.String getFileBindingName()
    Gets the value of the fileBindingName property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.lang.Boolean isFileBinding()
    Gets the value of the fileBinding property.
    void setAny​(java.lang.Object value)
    Sets the value of the any property.
    void setConnectionID​(java.lang.Long value)
    Sets the value of the connectionID property.
    void setDataBindingLoadMode​(long value)
    Sets the value of the dataBindingLoadMode property.
    void setDataBindingName​(java.lang.String value)
    Sets the value of the dataBindingName property.
    void setFileBinding​(java.lang.Boolean value)
    Sets the value of the fileBinding property.
    void setFileBindingName​(java.lang.String value)
    Sets the value of the fileBindingName property.
    void setParent​(java.lang.Object parent)  

    Methods inherited from class java.lang.Object

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

  • Constructor Details

  • Method Details

    • getAny

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

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

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

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

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

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

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

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

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

      public void setFileBindingName​(java.lang.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 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.