Packages

final class ExpressionTraversal[NodeType <: Expression] extends AnyVal

Traversal steps for Expression

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExpressionTraversal
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ExpressionTraversal(traversal: Traversal[NodeType])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. def argumentIndex(values: Integer*): Traversal[NodeType]

    Traverse to nodes where the argumentIndex equals at least one of the given values

  5. def argumentIndex(value: Integer): Traversal[NodeType]

    Traverse to nodes where the argumentIndex equals the given value

  6. def argumentIndex: Traversal[Integer]

    Traverse to argumentIndex property

  7. def argumentIndexGt(value: Integer): Traversal[NodeType]

    Traverse to nodes where the argumentIndex is greater than the given value

  8. def argumentIndexGte(value: Integer): Traversal[NodeType]

    Traverse to nodes where the argumentIndex is greater than or equal the given value

  9. def argumentIndexLt(value: Integer): Traversal[NodeType]

    Traverse to nodes where the argumentIndex is less than the given value

  10. def argumentIndexLte(value: Integer): Traversal[NodeType]

    Traverse to nodes where the argumentIndex is less than or equal the given value

  11. def argumentIndexNot(values: Integer*): Traversal[NodeType]

    Traverse to nodes where argumentIndex is not equal to any of the given values.

  12. def argumentIndexNot(value: Integer): Traversal[NodeType]

    Traverse to nodes where argumentIndex is not equal to the given value.

  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def code(patterns: String*): Traversal[NodeType]

    Traverse to nodes where the code matches at least one of the regular expressions in values

  15. def code(pattern: String): Traversal[NodeType]

    Traverse to nodes where the code matches the regular expression value

  16. def code: Traversal[String]

    Traverse to code property

  17. def codeExact(values: String*): Traversal[NodeType]

    Traverse to nodes where code matches one of the elements in values exactly.

  18. def codeExact(value: String): Traversal[NodeType]

    Traverse to nodes where code matches value exactly.

  19. def codeNot(patterns: String*): Traversal[NodeType]

    Traverse to nodes where code does not match any of the regular expressions in values.

  20. def codeNot(pattern: String): Traversal[NodeType]

    Traverse to nodes where code does not match the regular expression value.

  21. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def order(values: Integer*): Traversal[NodeType]

    Traverse to nodes where the order equals at least one of the given values

  24. def order(value: Integer): Traversal[NodeType]

    Traverse to nodes where the order equals the given value

  25. def order: Traversal[Integer]

    Traverse to order property

  26. def orderGt(value: Integer): Traversal[NodeType]

    Traverse to nodes where the order is greater than the given value

  27. def orderGte(value: Integer): Traversal[NodeType]

    Traverse to nodes where the order is greater than or equal the given value

  28. def orderLt(value: Integer): Traversal[NodeType]

    Traverse to nodes where the order is less than the given value

  29. def orderLte(value: Integer): Traversal[NodeType]

    Traverse to nodes where the order is less than or equal the given value

  30. def orderNot(values: Integer*): Traversal[NodeType]

    Traverse to nodes where order is not equal to any of the given values.

  31. def orderNot(value: Integer): Traversal[NodeType]

    Traverse to nodes where order is not equal to the given value.

  32. def toString(): String
    Definition Classes
    Any
  33. val traversal: Traversal[NodeType]

Inherited from AnyVal

Inherited from Any

Ungrouped