Class CTTextPr

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

public class CTTextPr
extends java.lang.Object
implements Child

Java class for CT_TextPr complex type.

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

 <complexType name="CT_TextPr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="textFields" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_TextFields" minOccurs="0"/>
       </sequence>
       <attribute name="prompt" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="fileType" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_FileType" default="win" />
       <attribute name="codePage" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="1252" />
       <attribute name="characterSet" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="firstRow" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="1" />
       <attribute name="sourceFile" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" default="" />
       <attribute name="delimited" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="decimal" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" default="." />
       <attribute name="thousands" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" default="," />
       <attribute name="tab" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="space" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="comma" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="semicolon" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="consecutive" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="qualifier" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_Qualifier" default="doubleQuote" />
       <attribute name="delimiter" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.String characterSet  
    protected java.lang.Long codePage  
    protected java.lang.Boolean comma  
    protected java.lang.Boolean consecutive  
    protected java.lang.String decimal  
    protected java.lang.Boolean delimited  
    protected java.lang.String delimiter  
    protected STFileType fileType  
    protected java.lang.Long firstRow  
    protected java.lang.Boolean prompt  
    protected STQualifier qualifier  
    protected java.lang.Boolean semicolon  
    protected java.lang.String sourceFile  
    protected java.lang.Boolean space  
    protected java.lang.Boolean tab  
    protected CTTextFields textFields  
    protected java.lang.String thousands  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTTextPr()  
  • 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.String getCharacterSet()
    Gets the value of the characterSet property.
    long getCodePage()
    Gets the value of the codePage property.
    java.lang.String getDecimal()
    Gets the value of the decimal property.
    java.lang.String getDelimiter()
    Gets the value of the delimiter property.
    STFileType getFileType()
    Gets the value of the fileType property.
    long getFirstRow()
    Gets the value of the firstRow property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    STQualifier getQualifier()
    Gets the value of the qualifier property.
    java.lang.String getSourceFile()
    Gets the value of the sourceFile property.
    CTTextFields getTextFields()
    Gets the value of the textFields property.
    java.lang.String getThousands()
    Gets the value of the thousands property.
    boolean isComma()
    Gets the value of the comma property.
    boolean isConsecutive()
    Gets the value of the consecutive property.
    boolean isDelimited()
    Gets the value of the delimited property.
    boolean isPrompt()
    Gets the value of the prompt property.
    boolean isSemicolon()
    Gets the value of the semicolon property.
    boolean isSpace()
    Gets the value of the space property.
    boolean isTab()
    Gets the value of the tab property.
    void setCharacterSet​(java.lang.String value)
    Sets the value of the characterSet property.
    void setCodePage​(java.lang.Long value)
    Sets the value of the codePage property.
    void setComma​(java.lang.Boolean value)
    Sets the value of the comma property.
    void setConsecutive​(java.lang.Boolean value)
    Sets the value of the consecutive property.
    void setDecimal​(java.lang.String value)
    Sets the value of the decimal property.
    void setDelimited​(java.lang.Boolean value)
    Sets the value of the delimited property.
    void setDelimiter​(java.lang.String value)
    Sets the value of the delimiter property.
    void setFileType​(STFileType value)
    Sets the value of the fileType property.
    void setFirstRow​(java.lang.Long value)
    Sets the value of the firstRow property.
    void setParent​(java.lang.Object parent)  
    void setPrompt​(java.lang.Boolean value)
    Sets the value of the prompt property.
    void setQualifier​(STQualifier value)
    Sets the value of the qualifier property.
    void setSemicolon​(java.lang.Boolean value)
    Sets the value of the semicolon property.
    void setSourceFile​(java.lang.String value)
    Sets the value of the sourceFile property.
    void setSpace​(java.lang.Boolean value)
    Sets the value of the space property.
    void setTab​(java.lang.Boolean value)
    Sets the value of the tab property.
    void setTextFields​(CTTextFields value)
    Sets the value of the textFields property.
    void setThousands​(java.lang.String value)
    Sets the value of the thousands 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

    • getTextFields

      public CTTextFields getTextFields()
      Gets the value of the textFields property.
      Returns:
      possible object is CTTextFields
    • setTextFields

      public void setTextFields​(CTTextFields value)
      Sets the value of the textFields property.
      Parameters:
      value - allowed object is CTTextFields
    • isPrompt

      public boolean isPrompt()
      Gets the value of the prompt property.
      Returns:
      possible object is Boolean
    • setPrompt

      public void setPrompt​(java.lang.Boolean value)
      Sets the value of the prompt property.
      Parameters:
      value - allowed object is Boolean
    • getFileType

      public STFileType getFileType()
      Gets the value of the fileType property.
      Returns:
      possible object is STFileType
    • setFileType

      public void setFileType​(STFileType value)
      Sets the value of the fileType property.
      Parameters:
      value - allowed object is STFileType
    • getCodePage

      public long getCodePage()
      Gets the value of the codePage property.
      Returns:
      possible object is Long
    • setCodePage

      public void setCodePage​(java.lang.Long value)
      Sets the value of the codePage property.
      Parameters:
      value - allowed object is Long
    • getCharacterSet

      public java.lang.String getCharacterSet()
      Gets the value of the characterSet property.
      Returns:
      possible object is String
    • setCharacterSet

      public void setCharacterSet​(java.lang.String value)
      Sets the value of the characterSet property.
      Parameters:
      value - allowed object is String
    • getFirstRow

      public long getFirstRow()
      Gets the value of the firstRow property.
      Returns:
      possible object is Long
    • setFirstRow

      public void setFirstRow​(java.lang.Long value)
      Sets the value of the firstRow property.
      Parameters:
      value - allowed object is Long
    • getSourceFile

      public java.lang.String getSourceFile()
      Gets the value of the sourceFile property.
      Returns:
      possible object is String
    • setSourceFile

      public void setSourceFile​(java.lang.String value)
      Sets the value of the sourceFile property.
      Parameters:
      value - allowed object is String
    • isDelimited

      public boolean isDelimited()
      Gets the value of the delimited property.
      Returns:
      possible object is Boolean
    • setDelimited

      public void setDelimited​(java.lang.Boolean value)
      Sets the value of the delimited property.
      Parameters:
      value - allowed object is Boolean
    • getDecimal

      public java.lang.String getDecimal()
      Gets the value of the decimal property.
      Returns:
      possible object is String
    • setDecimal

      public void setDecimal​(java.lang.String value)
      Sets the value of the decimal property.
      Parameters:
      value - allowed object is String
    • getThousands

      public java.lang.String getThousands()
      Gets the value of the thousands property.
      Returns:
      possible object is String
    • setThousands

      public void setThousands​(java.lang.String value)
      Sets the value of the thousands property.
      Parameters:
      value - allowed object is String
    • isTab

      public boolean isTab()
      Gets the value of the tab property.
      Returns:
      possible object is Boolean
    • setTab

      public void setTab​(java.lang.Boolean value)
      Sets the value of the tab property.
      Parameters:
      value - allowed object is Boolean
    • isSpace

      public boolean isSpace()
      Gets the value of the space property.
      Returns:
      possible object is Boolean
    • setSpace

      public void setSpace​(java.lang.Boolean value)
      Sets the value of the space property.
      Parameters:
      value - allowed object is Boolean
    • isComma

      public boolean isComma()
      Gets the value of the comma property.
      Returns:
      possible object is Boolean
    • setComma

      public void setComma​(java.lang.Boolean value)
      Sets the value of the comma property.
      Parameters:
      value - allowed object is Boolean
    • isSemicolon

      public boolean isSemicolon()
      Gets the value of the semicolon property.
      Returns:
      possible object is Boolean
    • setSemicolon

      public void setSemicolon​(java.lang.Boolean value)
      Sets the value of the semicolon property.
      Parameters:
      value - allowed object is Boolean
    • isConsecutive

      public boolean isConsecutive()
      Gets the value of the consecutive property.
      Returns:
      possible object is Boolean
    • setConsecutive

      public void setConsecutive​(java.lang.Boolean value)
      Sets the value of the consecutive property.
      Parameters:
      value - allowed object is Boolean
    • getQualifier

      public STQualifier getQualifier()
      Gets the value of the qualifier property.
      Returns:
      possible object is STQualifier
    • setQualifier

      public void setQualifier​(STQualifier value)
      Sets the value of the qualifier property.
      Parameters:
      value - allowed object is STQualifier
    • getDelimiter

      public java.lang.String getDelimiter()
      Gets the value of the delimiter property.
      Returns:
      possible object is String
    • setDelimiter

      public void setDelimiter​(java.lang.String value)
      Sets the value of the delimiter property.
      Parameters:
      value - allowed object is String
    • 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.