java.lang.ObjectAbstractFilter
ElementFilter
public class ElementFilter
A Filter that only matches Element
objects.
Field Summary | |
---|---|
private static java.lang.String | CVS_ID |
private java.lang.String | name The element name |
private Namespace | namespace The element namespace |
Constructor Summary | |
---|---|
ElementFilter() Select only the Elements. | |
ElementFilter(Namespace namespace) Select only the Elements with the supplied Namespace. | |
ElementFilter(java.lang.String name) Select only the Elements with the supplied name in any Namespace. | |
ElementFilter(java.lang.String name, Namespace namespace) Select only the Elements with the supplied name and Namespace. |
Method Summary | |
---|---|
boolean | equals(java.lang.Object obj) Returns whether the two filters are equivalent (i.e. the matching names and namespace are equivalent). |
int | hashCode() |
boolean | matches(java.lang.Object obj) Check to see if the object matches a predefined set of rules. |
private void | readObject(java.io.ObjectInputStream in) |
private void | writeObject(java.io.ObjectOutputStream out) |
Methods inherited from class AbstractFilter |
---|
and, negate, or |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private static final java.lang.String CVS_ID
private java.lang.String name
private transient Namespace namespace
Constructor Detail |
---|
public ElementFilter()
public ElementFilter(java.lang.String name)
name
- The name of the Element.public ElementFilter(Namespace namespace)
namespace
- The namespace the Element lives in.public ElementFilter(java.lang.String name, Namespace namespace)
name
- The name of the Element.namespace
- The namespace the Element lives in.Method Detail |
---|
public boolean matches(java.lang.Object obj)
obj
- The object to verify. true
if the objected matched a predfined set of rules.public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
obj
- the object to compare against public int hashCode()
hashCode
in class java.lang.Object
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException
java.io.IOException
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException
java.io.IOException
java.lang.ClassNotFoundException