Package org.biojava.bio.program.xff
Class ElementRecognizer.HasAttribute
- java.lang.Object
-
- org.biojava.bio.program.xff.ElementRecognizer.HasAttribute
-
- All Implemented Interfaces:
ElementRecognizer
- Enclosing interface:
- ElementRecognizer
public static class ElementRecognizer.HasAttribute extends Object implements ElementRecognizer
Filter elements on the existence of a specified attribute.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.biojava.bio.program.xff.ElementRecognizer
ElementRecognizer.AllElementRecognizer, ElementRecognizer.ByLocalName, ElementRecognizer.ByNSName, ElementRecognizer.HasAttribute
-
-
Field Summary
-
Fields inherited from interface org.biojava.bio.program.xff.ElementRecognizer
ALL
-
-
Constructor Summary
Constructors Constructor Description HasAttribute(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
filterStartElement(String nsURI, String localName, String qName, Attributes attrs)
Recognize an element based upon the start element parameters.String
toString()
-
-
-
Constructor Detail
-
HasAttribute
public HasAttribute(String name)
-
-
Method Detail
-
filterStartElement
public boolean filterStartElement(String nsURI, String localName, String qName, Attributes attrs)
Description copied from interface:ElementRecognizer
Recognize an element based upon the start element parameters.- Specified by:
filterStartElement
in interfaceElementRecognizer
- Parameters:
nsURI
- the uri of the element to filterlocalName
- the local name of the element to filterqName
- the qName of the element to filterattrs
- the attributes associated with the element to filter- Returns:
- true if this element is accepted, false otherwise
-
-