final class MatchInfoTraversal[NodeType <: MatchInfo] extends AnyVal
Traversal steps for MatchInfo
- Alphabetic
- By Inheritance
- MatchInfoTraversal
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new MatchInfoTraversal(traversal: Traversal[NodeType])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##(): Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def category(patterns: String*): Traversal[NodeType]
Traverse to nodes where the category matches at least one of the regular expressions in
values
- def category(pattern: String): Traversal[NodeType]
Traverse to nodes where the category matches the regular expression
value
- def category: Traversal[String]
Traverse to category property
- def categoryExact(values: String*): Traversal[NodeType]
Traverse to nodes where category matches one of the elements in
values
exactly. - def categoryExact(value: String): Traversal[NodeType]
Traverse to nodes where category matches
value
exactly. - def categoryNot(patterns: String*): Traversal[NodeType]
Traverse to nodes where category does not match any of the regular expressions in
values
. - def categoryNot(pattern: String): Traversal[NodeType]
Traverse to nodes where category does not match the regular expression
value
. - def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def pattern(patterns: String*): Traversal[NodeType]
Traverse to nodes where the pattern matches at least one of the regular expressions in
values
- def pattern(pattern: String): Traversal[NodeType]
Traverse to nodes where the pattern matches the regular expression
value
- def pattern: Traversal[String]
Traverse to pattern property
- def patternExact(values: String*): Traversal[NodeType]
Traverse to nodes where pattern matches one of the elements in
values
exactly. - def patternExact(value: String): Traversal[NodeType]
Traverse to nodes where pattern matches
value
exactly. - def patternNot(patterns: String*): Traversal[NodeType]
Traverse to nodes where pattern does not match any of the regular expressions in
values
. - def patternNot(pattern: String): Traversal[NodeType]
Traverse to nodes where pattern does not match the regular expression
value
. - def toString(): String
- Definition Classes
- Any
- val traversal: Traversal[NodeType]