Package org.jdom.filter
Interface Filter<E extends Content>
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractFilter,ContentFilter,ElementFilter
public interface Filter<E extends Content> extends Serializable
A generalized filter to restrict visibility or mutability on a list.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatches(Object obj)Check to see if the object matches a predefined set of rules.
-
-
-
Method Detail
-
matches
boolean matches(Object obj)
Check to see if the object matches a predefined set of rules.- Parameters:
obj- The object to verify.- Returns:
trueif the object matches a predfined set of rules.
-
-