Package org.apache.tika.sax.xpath
Class NodeMatcher
- java.lang.Object
-
- org.apache.tika.sax.xpath.Matcher
-
- org.apache.tika.sax.xpath.NodeMatcher
-
public class NodeMatcher extends Matcher
Final evaluation state of a.../node()XPath expression. Matches all elements, attributes, and text.
-
-
Constructor Summary
Constructors Constructor Description NodeMatcher()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanmatchesAttribute(String namespace, String name)Returnstrueif the XPath expression matches the named attribute of the element associated with this evaluation state.booleanmatchesElement()Returnstrueif the XPath expression matches the element associated with this evaluation state.booleanmatchesText()Returnstrueif the XPath expression matches all text nodes whose parent is the element associated with this evaluation state.
-
-
-
Field Detail
-
INSTANCE
public static final Matcher INSTANCE
-
-
Method Detail
-
matchesElement
public boolean matchesElement()
Description copied from class:MatcherReturnstrueif the XPath expression matches the element associated with this evaluation state.- Overrides:
matchesElementin classMatcher- Returns:
- XPath evaluation state for this element
-
matchesAttribute
public boolean matchesAttribute(String namespace, String name)
Description copied from class:MatcherReturnstrueif the XPath expression matches the named attribute of the element associated with this evaluation state.- Overrides:
matchesAttributein classMatcher- Parameters:
namespace- attribute namespace ornullname- attribute name- Returns:
- XPath evaluation state for named attribute of this element
-
matchesText
public boolean matchesText()
Description copied from class:MatcherReturnstrueif the XPath expression matches all text nodes whose parent is the element associated with this evaluation state.- Overrides:
matchesTextin classMatcher- Returns:
- XPath evaluation state for text children of this element
-
-