Class CTSst

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

public class CTSst
extends java.lang.Object
implements Child

This element is the root of the Shared String Table, which serves as a collection of individual String Items (si).

Java class for CT_Sst complex type.

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

 <complexType name="CT_Sst">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="si" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_Rst" maxOccurs="unbounded" minOccurs="0"/>
         <element name="extLst" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_ExtensionList" minOccurs="0"/>
       </sequence>
       <attribute name="count" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="uniqueCount" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.Long count  
    protected CTExtensionList extLst  
    protected java.util.List<CTRst> si  
    protected java.lang.Long uniqueCount  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTSst()  
  • 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.Long getCount()
    Gets the value of the count property.
    CTExtensionList getExtLst()
    Gets the value of the extLst property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.util.List<CTRst> getSi()
    Gets the value of the si (String Item) property.
    java.lang.Long getUniqueCount()
    Gets the value of the uniqueCount property.
    void setCount​(java.lang.Long value)
    Sets the value of the count property.
    void setExtLst​(CTExtensionList value)
    Sets the value of the extLst property.
    void setParent​(java.lang.Object parent)  
    void setUniqueCount​(java.lang.Long value)
    Sets the value of the uniqueCount property.

    Methods inherited from class java.lang.Object

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

  • Constructor Details

  • Method Details

    • getSi

      public java.util.List<CTRst> getSi()
      Gets the value of the si (String Item) property.

      This element is the representation of an individual string in the Shared String table.

      If the string is just a simple string with formatting applied at the cell level, then the String Item (si) should contain a single text element used to express the string. However, if the string in the cell is more complex - i.e., has formatting applied at the character level - then the string item shall consist of multiple rich text runs which collectively are used to express the string.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the si property.

      For example, to add a new item, do as follows:

          getSi().add(newItem);
       

      Objects of the following type(s) are allowed in the list CTRst

    • getExtLst

      public CTExtensionList getExtLst()
      Gets the value of the extLst property.
      Returns:
      possible object is CTExtensionList
    • setExtLst

      public void setExtLst​(CTExtensionList value)
      Sets the value of the extLst property.
      Parameters:
      value - allowed object is CTExtensionList
    • getCount

      public java.lang.Long getCount()
      Gets the value of the count property.
      Returns:
      possible object is Long
    • setCount

      public void setCount​(java.lang.Long value)
      Sets the value of the count property.
      Parameters:
      value - allowed object is Long
    • getUniqueCount

      public java.lang.Long getUniqueCount()
      Gets the value of the uniqueCount property.
      Returns:
      possible object is Long
    • setUniqueCount

      public void setUniqueCount​(java.lang.Long value)
      Sets the value of the uniqueCount 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​(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.