Class Filter


  • public class Filter
    extends java.lang.Object

    Java class for anonymous complex type.

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

     <complexType>
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element ref="{}files" maxOccurs="unbounded" minOccurs="0"/>
             <element name="option" maxOccurs="unbounded" minOccurs="0">
               <complexType>
                 <complexContent>
                   <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                     <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
                     <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
                   </restriction>
                 </complexContent>
               </complexType>
             </element>
           </sequence>
           <attribute name="className" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
           <attribute name="enabled" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
         </restriction>
       </complexContent>
     </complexType>
     
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  Filter.Option
      Java class for anonymous complex type.
    • Constructor Summary

      Constructors 
      Constructor Description
      Filter()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getClassName()
      Gets the value of the className property.
      java.util.List<Files> getFiles()
      Gets the value of the files property.
      java.util.List<Filter.Option> getOption()
      Gets the value of the option property.
      boolean isEnabled()
      Gets the value of the enabled property.
      void setClassName​(java.lang.String value)
      Sets the value of the className property.
      void setEnabled​(boolean value)
      Sets the value of the enabled property.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Filter

        public Filter()
    • Method Detail

      • getFiles

        public java.util.List<Files> getFiles()
        Gets the value of the files property.

        This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the files property.

        For example, to add a new item, do as follows:

            getFiles().add(newItem);
         

        Objects of the following type(s) are allowed in the list Files

      • getOption

        public java.util.List<Filter.Option> getOption()
        Gets the value of the option property.

        This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the option property.

        For example, to add a new item, do as follows:

            getOption().add(newItem);
         

        Objects of the following type(s) are allowed in the list Filter.Option

      • getClassName

        public java.lang.String getClassName()
        Gets the value of the className property.
        Returns:
        possible object is String
      • setClassName

        public void setClassName​(java.lang.String value)
        Sets the value of the className property.
        Parameters:
        value - allowed object is String
      • isEnabled

        public boolean isEnabled()
        Gets the value of the enabled property.
      • setEnabled

        public void setEnabled​(boolean value)
        Sets the value of the enabled property.