Uses of Class
org.apache.tika.sax.xpath.Matcher
-
Packages that use Matcher Package Description org.apache.tika.sax.xpath XPath utilities -
-
Uses of Matcher in org.apache.tika.sax.xpath
Subclasses of Matcher in org.apache.tika.sax.xpath Modifier and Type Class Description class
AttributeMatcher
Final evaluation state of a.../@*
XPath expression.class
ChildMatcher
Intermediate evaluation state of a.../*...
XPath expression.class
CompositeMatcher
Composite XPath evaluation state.class
ElementMatcher
Final evaluation state of an XPath expression that targets an element.class
NamedAttributeMatcher
Final evaluation state of a.../@name
XPath expression.class
NamedElementMatcher
Intermediate evaluation state of a.../name...
XPath expression.class
NodeMatcher
Final evaluation state of a.../node()
XPath expression.class
SubtreeMatcher
Evaluation state of a...//...
XPath expression.class
TextMatcher
Final evaluation state of a.../text()
XPath expression.Fields in org.apache.tika.sax.xpath declared as Matcher Modifier and Type Field Description static Matcher
Matcher. FAIL
State of a failed XPath evaluation, where nothing is matched.static Matcher
AttributeMatcher. INSTANCE
static Matcher
ElementMatcher. INSTANCE
static Matcher
NodeMatcher. INSTANCE
static Matcher
TextMatcher. INSTANCE
Methods in org.apache.tika.sax.xpath that return Matcher Modifier and Type Method Description Matcher
ChildMatcher. descend(String namespace, String name)
Matcher
CompositeMatcher. descend(String namespace, String name)
Matcher
Matcher. descend(String namespace, String name)
Returns the XPath evaluation state that results from descending to a child element with the given name.Matcher
NamedElementMatcher. descend(String namespace, String name)
Matcher
SubtreeMatcher. descend(String namespace, String name)
Matcher
XPathParser. parse(String xpath)
Parses the given simple XPath expression to an evaluation state initialized at the document node.Constructors in org.apache.tika.sax.xpath with parameters of type Matcher Constructor Description ChildMatcher(Matcher then)
CompositeMatcher(Matcher a, Matcher b)
MatchingContentHandler(ContentHandler delegate, Matcher matcher)
NamedElementMatcher(String namespace, String name, Matcher then)
SubtreeMatcher(Matcher then)
-