Class CTDynamicFilter

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

public class CTDynamicFilter
extends java.lang.Object
implements Child

Java class for CT_DynamicFilter complex type.

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

 <complexType name="CT_DynamicFilter">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="type" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_DynamicFilterType" />
       <attribute name="val" type="{http://www.w3.org/2001/XMLSchema}double" />
       <attribute name="valIso" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
       <attribute name="maxVal" type="{http://www.w3.org/2001/XMLSchema}double" />
       <attribute name="maxValIso" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.Double maxVal  
    protected javax.xml.datatype.XMLGregorianCalendar maxValIso  
    protected STDynamicFilterType type  
    protected java.lang.Double val  
    protected javax.xml.datatype.XMLGregorianCalendar valIso  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTDynamicFilter()  
  • 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.Double getMaxVal()
    Gets the value of the maxVal property.
    javax.xml.datatype.XMLGregorianCalendar getMaxValIso()
    Gets the value of the maxValIso property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    STDynamicFilterType getType()
    Gets the value of the type property.
    java.lang.Double getVal()
    Gets the value of the val property.
    javax.xml.datatype.XMLGregorianCalendar getValIso()
    Gets the value of the valIso property.
    void setMaxVal​(java.lang.Double value)
    Sets the value of the maxVal property.
    void setMaxValIso​(javax.xml.datatype.XMLGregorianCalendar value)
    Sets the value of the maxValIso property.
    void setParent​(java.lang.Object parent)  
    void setType​(STDynamicFilterType value)
    Sets the value of the type property.
    void setVal​(java.lang.Double value)
    Sets the value of the val property.
    void setValIso​(javax.xml.datatype.XMLGregorianCalendar value)
    Sets the value of the valIso property.

    Methods inherited from class java.lang.Object

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

    • type

      protected STDynamicFilterType type
    • val

      protected java.lang.Double val
    • valIso

      protected javax.xml.datatype.XMLGregorianCalendar valIso
    • maxVal

      protected java.lang.Double maxVal
    • maxValIso

      protected javax.xml.datatype.XMLGregorianCalendar maxValIso
  • Constructor Details

  • Method Details

    • getType

      public STDynamicFilterType getType()
      Gets the value of the type property.
      Returns:
      possible object is STDynamicFilterType
    • setType

      public void setType​(STDynamicFilterType value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is STDynamicFilterType
    • getVal

      public java.lang.Double getVal()
      Gets the value of the val property.
      Returns:
      possible object is Double
    • setVal

      public void setVal​(java.lang.Double value)
      Sets the value of the val property.
      Parameters:
      value - allowed object is Double
    • getValIso

      public javax.xml.datatype.XMLGregorianCalendar getValIso()
      Gets the value of the valIso property.
      Returns:
      possible object is XMLGregorianCalendar
    • setValIso

      public void setValIso​(javax.xml.datatype.XMLGregorianCalendar value)
      Sets the value of the valIso property.
      Parameters:
      value - allowed object is XMLGregorianCalendar
    • getMaxVal

      public java.lang.Double getMaxVal()
      Gets the value of the maxVal property.
      Returns:
      possible object is Double
    • setMaxVal

      public void setMaxVal​(java.lang.Double value)
      Sets the value of the maxVal property.
      Parameters:
      value - allowed object is Double
    • getMaxValIso

      public javax.xml.datatype.XMLGregorianCalendar getMaxValIso()
      Gets the value of the maxValIso property.
      Returns:
      possible object is XMLGregorianCalendar
    • setMaxValIso

      public void setMaxValIso​(javax.xml.datatype.XMLGregorianCalendar value)
      Sets the value of the maxValIso property.
      Parameters:
      value - allowed object is XMLGregorianCalendar
    • 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.