Class CTMap

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

public class CTMap extends 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 Details

    • dataBinding

      protected CTDataBinding dataBinding
    • id

      protected long id
    • name

      protected String name
    • rootElement

      protected String rootElement
    • schemaID

      protected 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 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
    • getRootElement

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

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

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

      public void setSchemaID(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 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.