Class CTSortCondition

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

public class CTSortCondition
extends java.lang.Object
implements Child

Java class for CT_SortCondition complex type.

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

 <complexType name="CT_SortCondition">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="descending" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="sortBy" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_SortBy" default="value" />
       <attribute name="ref" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_Ref" />
       <attribute name="customList" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="dxfId" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_DxfId" />
       <attribute name="iconSet" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_IconSetType" default="3Arrows" />
       <attribute name="iconId" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.String customList  
    protected java.lang.Boolean descending  
    protected java.lang.Long dxfId  
    protected java.lang.Long iconId  
    protected java.lang.String iconSet  
    protected java.lang.String ref  
    protected STSortBy sortBy  
  • Constructor Summary

    Constructors
    Constructor Description
    CTSortCondition()  
  • Method Summary

    Modifier and Type Method Description
    void afterUnmarshal​(jakarta.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 getCustomList()
    Gets the value of the customList property.
    java.lang.Long getDxfId()
    Gets the value of the dxfId property.
    java.lang.Long getIconId()
    Gets the value of the iconId property.
    java.lang.String getIconSet()
    Gets the value of the iconSet property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.lang.String getRef()
    Gets the value of the ref property.
    STSortBy getSortBy()
    Gets the value of the sortBy property.
    boolean isDescending()
    Gets the value of the descending property.
    void setCustomList​(java.lang.String value)
    Sets the value of the customList property.
    void setDescending​(java.lang.Boolean value)
    Sets the value of the descending property.
    void setDxfId​(java.lang.Long value)
    Sets the value of the dxfId property.
    void setIconId​(java.lang.Long value)
    Sets the value of the iconId property.
    void setIconSet​(java.lang.String value)
    Sets the value of the iconSet property.
    void setParent​(java.lang.Object parent)  
    void setRef​(java.lang.String value)
    Sets the value of the ref property.
    void setSortBy​(STSortBy value)
    Sets the value of the sortBy property.

    Methods inherited from class java.lang.Object

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

    • descending

      protected java.lang.Boolean descending
    • sortBy

      protected STSortBy sortBy
    • ref

      protected java.lang.String ref
    • customList

      protected java.lang.String customList
    • dxfId

      protected java.lang.Long dxfId
    • iconSet

      protected java.lang.String iconSet
    • iconId

      protected java.lang.Long iconId
  • Constructor Details

    • CTSortCondition

      public CTSortCondition()
  • Method Details

    • isDescending

      public boolean isDescending()
      Gets the value of the descending property.
      Returns:
      possible object is Boolean
    • setDescending

      public void setDescending​(java.lang.Boolean value)
      Sets the value of the descending property.
      Parameters:
      value - allowed object is Boolean
    • getSortBy

      public STSortBy getSortBy()
      Gets the value of the sortBy property.
      Returns:
      possible object is STSortBy
    • setSortBy

      public void setSortBy​(STSortBy value)
      Sets the value of the sortBy property.
      Parameters:
      value - allowed object is STSortBy
    • getRef

      public java.lang.String getRef()
      Gets the value of the ref property.
      Returns:
      possible object is String
    • setRef

      public void setRef​(java.lang.String value)
      Sets the value of the ref property.
      Parameters:
      value - allowed object is String
    • getCustomList

      public java.lang.String getCustomList()
      Gets the value of the customList property.
      Returns:
      possible object is String
    • setCustomList

      public void setCustomList​(java.lang.String value)
      Sets the value of the customList property.
      Parameters:
      value - allowed object is String
    • getDxfId

      public java.lang.Long getDxfId()
      Gets the value of the dxfId property.
      Returns:
      possible object is Long
    • setDxfId

      public void setDxfId​(java.lang.Long value)
      Sets the value of the dxfId property.
      Parameters:
      value - allowed object is Long
    • getIconSet

      public java.lang.String getIconSet()
      Gets the value of the iconSet property.
      Returns:
      possible object is String
    • setIconSet

      public void setIconSet​(java.lang.String value)
      Sets the value of the iconSet property.
      Parameters:
      value - allowed object is String
    • getIconId

      public java.lang.Long getIconId()
      Gets the value of the iconId property.
      Returns:
      possible object is Long
    • setIconId

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