Class CTMetadataStringIndex

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

public class CTMetadataStringIndex extends Object implements Child

Java class for CT_MetadataStringIndex complex type.

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

 <complexType name="CT_MetadataStringIndex">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="x" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="s" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected Boolean
     
    protected long
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    Gets the parent object in the object tree representing the unmarshalled xml document.
    long
    Gets the value of the x property.
    boolean
    isS()
    Gets the value of the s property.
    void
    setParent(Object parent)
     
    void
    setS(Boolean value)
    Sets the value of the s property.
    void
    setX(long value)
    Sets the value of the x property.

    Methods inherited from class java.lang.Object

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

    • x

      protected long x
    • s

      protected Boolean s
  • Constructor Details

    • CTMetadataStringIndex

      public CTMetadataStringIndex()
  • Method Details

    • getX

      public long getX()
      Gets the value of the x property.
    • setX

      public void setX(long value)
      Sets the value of the x property.
    • isS

      public boolean isS()
      Gets the value of the s property.
      Returns:
      possible object is Boolean
    • setS

      public void setS(Boolean value)
      Sets the value of the s 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.