Uses of Class
org.jaxen.pattern.Pattern
-
Packages that use Pattern Package Description org.jaxen.pattern Defines XSLT Pattern objects. -
-
Uses of Pattern in org.jaxen.pattern
Subclasses of Pattern in org.jaxen.pattern Modifier and Type Class Description class
AnyNodeTest
AnyNodeTest
matches any node.class
LocationPathPattern
LocationPathPattern
matches any node using a location path such as A/B/C.class
NamespaceTest
NamespaceTest
tests for a given namespace URI.class
NameTest
NameTest
tests for a node name.class
NodeTest
Deprecated.will be removed in Jaxen 2.0class
NodeTypeTest
NodeTypeTest
matches if the node is of a certain type such as element, attribute, comment, text, processing instruction and so forth.class
TextNodeTest
TextNodeTest
matches any text node.class
UnionPattern
UnionPattern
represents a union pattern.Methods in org.jaxen.pattern that return Pattern Modifier and Type Method Description protected static Pattern
PatternParser. convertExpr(Expr expr)
protected Pattern
PatternHandler. createAbsoluteLocationPath()
protected Pattern
PatternHandler. createRelativeLocationPath()
Pattern
UnionPattern. getLHS()
Pattern
PatternHandler. getPattern()
Retrieve the simplified Jaxen Pattern expression tree.Pattern
PatternHandler. getPattern(boolean shouldSimplify)
Retrieve the Jaxen Pattern expression tree, optionally simplified.Pattern
UnionPattern. getRHS()
Pattern[]
Pattern. getUnionPatterns()
If this pattern is a union pattern then this method should return an array of patterns which describe the union pattern, which should contain more than one pattern.Pattern[]
UnionPattern. getUnionPatterns()
static Pattern
PatternParser. parse(java.lang.String text)
Pattern
LocationPathPattern. simplify()
Pattern
Pattern. simplify()
Pattern
UnionPattern. simplify()
Methods in org.jaxen.pattern with parameters of type Pattern Modifier and Type Method Description void
LocationPathPattern. setAncestorPattern(Pattern ancestorPattern)
Adds a pattern for an ancestor of the current context node used in this pattern.void
UnionPattern. setLHS(Pattern lhs)
void
LocationPathPattern. setParentPattern(Pattern parentPattern)
Adds a pattern for the parent of the current context node used in this pattern.void
UnionPattern. setRHS(Pattern rhs)
Constructors in org.jaxen.pattern with parameters of type Pattern Constructor Description UnionPattern(Pattern lhs, Pattern rhs)
-