Class CTTableStyleInfo

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

public class CTTableStyleInfo extends Object implements Child

Java class for CT_TableStyleInfo complex type.

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

 <complexType name="CT_TableStyleInfo">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="name" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="showFirstColumn" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="showLastColumn" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="showRowStripes" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="showColumnStripes" type="{http://www.w3.org/2001/XMLSchema}boolean" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • name

      protected String name
    • showFirstColumn

      protected Boolean showFirstColumn
    • showLastColumn

      protected Boolean showLastColumn
    • showRowStripes

      protected Boolean showRowStripes
    • showColumnStripes

      protected Boolean showColumnStripes
  • Constructor Details

    • CTTableStyleInfo

      public CTTableStyleInfo()
  • Method Details

    • 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
    • isShowFirstColumn

      public Boolean isShowFirstColumn()
      Gets the value of the showFirstColumn property.
      Returns:
      possible object is Boolean
    • setShowFirstColumn

      public void setShowFirstColumn(Boolean value)
      Sets the value of the showFirstColumn property.
      Parameters:
      value - allowed object is Boolean
    • isShowLastColumn

      public Boolean isShowLastColumn()
      Gets the value of the showLastColumn property.
      Returns:
      possible object is Boolean
    • setShowLastColumn

      public void setShowLastColumn(Boolean value)
      Sets the value of the showLastColumn property.
      Parameters:
      value - allowed object is Boolean
    • isShowRowStripes

      public Boolean isShowRowStripes()
      Gets the value of the showRowStripes property.
      Returns:
      possible object is Boolean
    • setShowRowStripes

      public void setShowRowStripes(Boolean value)
      Sets the value of the showRowStripes property.
      Parameters:
      value - allowed object is Boolean
    • isShowColumnStripes

      public Boolean isShowColumnStripes()
      Gets the value of the showColumnStripes property.
      Returns:
      possible object is Boolean
    • setShowColumnStripes

      public void setShowColumnStripes(Boolean value)
      Sets the value of the showColumnStripes property.
      Parameters:
      value - allowed object is Boolean
    • 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.