Package org.apache.tika.sax.xpath
Class NamedAttributeMatcher
- java.lang.Object
-
- org.apache.tika.sax.xpath.Matcher
-
- org.apache.tika.sax.xpath.NamedAttributeMatcher
-
public class NamedAttributeMatcher extends Matcher
Final evaluation state of a.../@name
XPath expression. Matches the named attributes of the current element.
-
-
Constructor Summary
Constructors Constructor Description NamedAttributeMatcher(String namespace, String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
matchesAttribute(String namespace, String name)
Returnstrue
if the XPath expression matches the named attribute of the element associated with this evaluation state.-
Methods inherited from class org.apache.tika.sax.xpath.Matcher
descend, matchesElement, matchesText
-
-
-
-
Method Detail
-
matchesAttribute
public boolean matchesAttribute(String namespace, String name)
Description copied from class:Matcher
Returnstrue
if the XPath expression matches the named attribute of the element associated with this evaluation state.- Overrides:
matchesAttribute
in classMatcher
- Parameters:
namespace
- attribute namespace ornull
name
- attribute name- Returns:
- XPath evaluation state for named attribute of this element
-
-