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 classAnyChildNodeTestAnyChildNodeTestmatches any child node.classAnyNodeTestAnyNodeTestmatches any node.classLocationPathPatternLocationPathPatternmatches any node using a location path such as A/B/C.classNamespaceTestNamespaceTesttests for a given namespace URI.classNameTestNameTesttests for a node name.classNodeTestNodeTestis a simple test on a node.classNodeTypeTestNodeTypeTestmatches if the node is of a certain type such as element, attribute, comment, text, processing instruction and so forth.classNoNodeTestNoNodeTestmatches no nodes.classTextNodeTestTextNodeTestmatches any text node.classUnionPatternUnionPatternrepresents a union pattern.Methods in org.jaxen.pattern that return Pattern Modifier and Type Method Description protected static PatternPatternParser. convertExpr(Expr expr)protected PatternPatternHandler. createAbsoluteLocationPath()protected PatternPatternHandler. createRelativeLocationPath()PatternUnionPattern. getLHS()PatternPatternHandler. getPattern()Retrieve the simplified Jaxen Pattern expression tree.PatternPatternHandler. getPattern(boolean shouldSimplify)Retrieve the Jaxen Pattern expression tree, optionally simplified.PatternUnionPattern. 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 PatternPatternParser. parse(java.lang.String text)PatternLocationPathPattern. simplify()PatternPattern. simplify()PatternUnionPattern. simplify()Methods in org.jaxen.pattern with parameters of type Pattern Modifier and Type Method Description voidLocationPathPattern. setAncestorPattern(Pattern ancestorPattern)Adds a pattern for an ancestor of the current context node used in this pattern.voidUnionPattern. setLHS(Pattern lhs)voidLocationPathPattern. setParentPattern(Pattern parentPattern)Adds a pattern for the parent of the current context node used in this pattern.voidUnionPattern. setRHS(Pattern rhs)Constructors in org.jaxen.pattern with parameters of type Pattern Constructor Description UnionPattern(Pattern lhs, Pattern rhs)
-