Class CTMap

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

public class CTMap
extends java.lang.Object
implements Child

Java class for CT_Map complex type.

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

 <complexType name="CT_Map">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="DataBinding" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_DataBinding" minOccurs="0"/>
       </sequence>
       <attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="Name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="RootElement" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="SchemaID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="ShowImportExportValidationErrors" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="AutoFit" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="Append" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="PreserveSortAFLayout" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="PreserveFormat" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected boolean append  
    protected boolean autoFit  
    protected CTDataBinding dataBinding  
    protected long id  
    protected java.lang.String name  
    protected boolean preserveFormat  
    protected boolean preserveSortAFLayout  
    protected java.lang.String rootElement  
    protected java.lang.String schemaID  
    protected boolean showImportExportValidationErrors  
  • Constructor Summary

    Constructors
    Constructor Description
    CTMap()  
  • 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.
    CTDataBinding getDataBinding()
    Gets the value of the dataBinding property.
    long getID()
    Gets the value of the id property.
    java.lang.String getName()
    Gets the value of the name property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.lang.String getRootElement()
    Gets the value of the rootElement property.
    java.lang.String getSchemaID()
    Gets the value of the schemaID property.
    boolean isAppend()
    Gets the value of the append property.
    boolean isAutoFit()
    Gets the value of the autoFit property.
    boolean isPreserveFormat()
    Gets the value of the preserveFormat property.
    boolean isPreserveSortAFLayout()
    Gets the value of the preserveSortAFLayout property.
    boolean isShowImportExportValidationErrors()
    Gets the value of the showImportExportValidationErrors property.
    void setAppend​(boolean value)
    Sets the value of the append property.
    void setAutoFit​(boolean value)
    Sets the value of the autoFit property.
    void setDataBinding​(CTDataBinding value)
    Sets the value of the dataBinding property.
    void setID​(long value)
    Sets the value of the id property.
    void setName​(java.lang.String value)
    Sets the value of the name property.
    void setParent​(java.lang.Object parent)  
    void setPreserveFormat​(boolean value)
    Sets the value of the preserveFormat property.
    void setPreserveSortAFLayout​(boolean value)
    Sets the value of the preserveSortAFLayout property.
    void setRootElement​(java.lang.String value)
    Sets the value of the rootElement property.
    void setSchemaID​(java.lang.String value)
    Sets the value of the schemaID property.
    void setShowImportExportValidationErrors​(boolean value)
    Sets the value of the showImportExportValidationErrors property.

    Methods inherited from class java.lang.Object

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

    • dataBinding

      protected CTDataBinding dataBinding
    • id

      protected long id
    • name

      protected java.lang.String name
    • rootElement

      protected java.lang.String rootElement
    • schemaID

      protected java.lang.String schemaID
    • showImportExportValidationErrors

      protected boolean showImportExportValidationErrors
    • autoFit

      protected boolean autoFit
    • append

      protected boolean append
    • preserveSortAFLayout

      protected boolean preserveSortAFLayout
    • preserveFormat

      protected boolean preserveFormat
  • Constructor Details

    • CTMap

      public CTMap()
  • Method Details

    • getDataBinding

      public CTDataBinding getDataBinding()
      Gets the value of the dataBinding property.
      Returns:
      possible object is CTDataBinding
    • setDataBinding

      public void setDataBinding​(CTDataBinding value)
      Sets the value of the dataBinding property.
      Parameters:
      value - allowed object is CTDataBinding
    • getID

      public long getID()
      Gets the value of the id property.
    • setID

      public void setID​(long value)
      Sets the value of the id property.
    • getName

      public java.lang.String getName()
      Gets the value of the name property.
      Returns:
      possible object is String
    • setName

      public void setName​(java.lang.String value)
      Sets the value of the name property.
      Parameters:
      value - allowed object is String
    • getRootElement

      public java.lang.String getRootElement()
      Gets the value of the rootElement property.
      Returns:
      possible object is String
    • setRootElement

      public void setRootElement​(java.lang.String value)
      Sets the value of the rootElement property.
      Parameters:
      value - allowed object is String
    • getSchemaID

      public java.lang.String getSchemaID()
      Gets the value of the schemaID property.
      Returns:
      possible object is String
    • setSchemaID

      public void setSchemaID​(java.lang.String value)
      Sets the value of the schemaID property.
      Parameters:
      value - allowed object is String
    • isShowImportExportValidationErrors

      public boolean isShowImportExportValidationErrors()
      Gets the value of the showImportExportValidationErrors property.
    • setShowImportExportValidationErrors

      public void setShowImportExportValidationErrors​(boolean value)
      Sets the value of the showImportExportValidationErrors property.
    • isAutoFit

      public boolean isAutoFit()
      Gets the value of the autoFit property.
    • setAutoFit

      public void setAutoFit​(boolean value)
      Sets the value of the autoFit property.
    • isAppend

      public boolean isAppend()
      Gets the value of the append property.
    • setAppend

      public void setAppend​(boolean value)
      Sets the value of the append property.
    • isPreserveSortAFLayout

      public boolean isPreserveSortAFLayout()
      Gets the value of the preserveSortAFLayout property.
    • setPreserveSortAFLayout

      public void setPreserveSortAFLayout​(boolean value)
      Sets the value of the preserveSortAFLayout property.
    • isPreserveFormat

      public boolean isPreserveFormat()
      Gets the value of the preserveFormat property.
    • setPreserveFormat

      public void setPreserveFormat​(boolean value)
      Sets the value of the preserveFormat 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​(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.