Class CTDynamicFilter

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

public class CTDynamicFilter extends 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 Details

  • Constructor Details

    • CTDynamicFilter

      public CTDynamicFilter()
  • 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 Double getVal()
      Gets the value of the val property.
      Returns:
      possible object is Double
    • setVal

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

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

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

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

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

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

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