final class ExpressionTraversal[NodeType <: Expression] extends AnyVal
Traversal steps for Expression
- Alphabetic
- By Inheritance
- ExpressionTraversal
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ExpressionTraversal(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
- def argumentIndex(values: Integer*): Traversal[NodeType]
Traverse to nodes where the argumentIndex equals at least one of the given
values
- def argumentIndex(value: Integer): Traversal[NodeType]
Traverse to nodes where the argumentIndex equals the given
value
- def argumentIndex: Traversal[Integer]
Traverse to argumentIndex property
- def argumentIndexGt(value: Integer): Traversal[NodeType]
Traverse to nodes where the argumentIndex is greater than the given
value
- def argumentIndexGte(value: Integer): Traversal[NodeType]
Traverse to nodes where the argumentIndex is greater than or equal the given
value
- def argumentIndexLt(value: Integer): Traversal[NodeType]
Traverse to nodes where the argumentIndex is less than the given
value
- def argumentIndexLte(value: Integer): Traversal[NodeType]
Traverse to nodes where the argumentIndex is less than or equal the given
value
- def argumentIndexNot(values: Integer*): Traversal[NodeType]
Traverse to nodes where argumentIndex is not equal to any of the given
values
. - def argumentIndexNot(value: Integer): Traversal[NodeType]
Traverse to nodes where argumentIndex is not equal to the given
value
. - final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def code(patterns: String*): Traversal[NodeType]
Traverse to nodes where the code matches at least one of the regular expressions in
values
- def code(pattern: String): Traversal[NodeType]
Traverse to nodes where the code matches the regular expression
value
- def code: Traversal[String]
Traverse to code property
- def codeExact(values: String*): Traversal[NodeType]
Traverse to nodes where code matches one of the elements in
values
exactly. - def codeExact(value: String): Traversal[NodeType]
Traverse to nodes where code matches
value
exactly. - def codeNot(patterns: String*): Traversal[NodeType]
Traverse to nodes where code does not match any of the regular expressions in
values
. - def codeNot(pattern: String): Traversal[NodeType]
Traverse to nodes where code does not match the regular expression
value
. - def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def order(values: Integer*): Traversal[NodeType]
Traverse to nodes where the order equals at least one of the given
values
- def order(value: Integer): Traversal[NodeType]
Traverse to nodes where the order equals the given
value
- def order: Traversal[Integer]
Traverse to order property
- def orderGt(value: Integer): Traversal[NodeType]
Traverse to nodes where the order is greater than the given
value
- def orderGte(value: Integer): Traversal[NodeType]
Traverse to nodes where the order is greater than or equal the given
value
- def orderLt(value: Integer): Traversal[NodeType]
Traverse to nodes where the order is less than the given
value
- def orderLte(value: Integer): Traversal[NodeType]
Traverse to nodes where the order is less than or equal the given
value
- def orderNot(values: Integer*): Traversal[NodeType]
Traverse to nodes where order is not equal to any of the given
values
. - def orderNot(value: Integer): Traversal[NodeType]
Traverse to nodes where order is not equal to the given
value
. - def toString(): String
- Definition Classes
- Any
- val traversal: Traversal[NodeType]