Class CTDbPr

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

public class CTDbPr
extends java.lang.Object
implements Child

Java class for CT_DbPr complex type.

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

 <complexType name="CT_DbPr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="connection" use="required" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="command" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="serverCommand" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="commandType" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="2" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.String command  
    protected java.lang.Long commandType  
    protected java.lang.String connection  
    protected java.lang.String serverCommand  
  • Constructor Summary

    Constructors
    Constructor Description
    CTDbPr()  
  • Method Summary

    Modifier and Type Method Description
    void afterUnmarshal​(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    java.lang.String getCommand()
    Gets the value of the command property.
    long getCommandType()
    Gets the value of the commandType property.
    java.lang.String getConnection()
    Gets the value of the connection property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.lang.String getServerCommand()
    Gets the value of the serverCommand property.
    void setCommand​(java.lang.String value)
    Sets the value of the command property.
    void setCommandType​(java.lang.Long value)
    Sets the value of the commandType property.
    void setConnection​(java.lang.String value)
    Sets the value of the connection property.
    void setParent​(java.lang.Object parent)  
    void setServerCommand​(java.lang.String value)
    Sets the value of the serverCommand property.

    Methods inherited from class java.lang.Object

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

    • connection

      protected java.lang.String connection
    • command

      protected java.lang.String command
    • serverCommand

      protected java.lang.String serverCommand
    • commandType

      protected java.lang.Long commandType
  • Constructor Details

    • CTDbPr

      public CTDbPr()
  • Method Details

    • getConnection

      public java.lang.String getConnection()
      Gets the value of the connection property.
      Returns:
      possible object is String
    • setConnection

      public void setConnection​(java.lang.String value)
      Sets the value of the connection property.
      Parameters:
      value - allowed object is String
    • getCommand

      public java.lang.String getCommand()
      Gets the value of the command property.
      Returns:
      possible object is String
    • setCommand

      public void setCommand​(java.lang.String value)
      Sets the value of the command property.
      Parameters:
      value - allowed object is String
    • getServerCommand

      public java.lang.String getServerCommand()
      Gets the value of the serverCommand property.
      Returns:
      possible object is String
    • setServerCommand

      public void setServerCommand​(java.lang.String value)
      Sets the value of the serverCommand property.
      Parameters:
      value - allowed object is String
    • getCommandType

      public long getCommandType()
      Gets the value of the commandType property.
      Returns:
      possible object is Long
    • setCommandType

      public void setCommandType​(java.lang.Long value)
      Sets the value of the commandType property.
      Parameters:
      value - allowed object is Long
    • 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​(jakarta.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.