Class Filter
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 ClassesModifier and TypeClassDescriptionstatic classJava class for anonymous complex type -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the className property.getFiles()Gets the value of the files property.Gets the value of the option property.booleanGets the value of the enabled property.voidsetClassName(String value) Sets the value of the className property.voidsetEnabled(boolean value) Sets the value of the enabled property.
-
Constructor Details
-
Filter
public Filter()
-
-
Method Details
-
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
setmethod 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
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
setmethod 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
Gets the value of the className property.- Returns:
- possible object is
String
-
setClassName
Sets the value of the className property.- Parameters:
value- allowed object isString
-
isEnabled
public boolean isEnabled()Gets the value of the enabled property. -
setEnabled
public void setEnabled(boolean value) Sets the value of the enabled property.
-