Class CTServerFormat

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

public class CTServerFormat extends Object implements Child

Java class for CT_ServerFormat complex type.

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

 <complexType name="CT_ServerFormat">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="culture" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="format" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • culture

      protected String culture
    • format

      protected String format
  • Constructor Details

    • CTServerFormat

      public CTServerFormat()
  • Method Details

    • getCulture

      public String getCulture()
      Gets the value of the culture property.
      Returns:
      possible object is String
    • setCulture

      public void setCulture(String value)
      Sets the value of the culture property.
      Parameters:
      value - allowed object is String
    • getFormat

      public String getFormat()
      Gets the value of the format property.
      Returns:
      possible object is String
    • setFormat

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