Class Filter

java.lang.Object
gen.core.filters.Filter

public class Filter extends 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>
 
  • Constructor Details

    • Filter

      public Filter()
  • Method Details

    • getFiles

      public 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 Jakarta XML Binding 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

      Returns:
      The value of the files property.
    • getOption

      public 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 Jakarta XML Binding 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

      Returns:
      The value of the option property.
    • getClassName

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

      public void setClassName(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.