TypeTraversalExtGen

final
class TypeTraversalExtGen[NodeType <: Type](val traversal: IterableOnce[NodeType]) extends AnyVal

Traversal steps for Type

class AnyVal
trait Matchable
class Any

Value members

Concrete methods

@Doc(info = "Direct alias type declarations.")
def aliasTypeDecl: Traversal[TypeDecl]

Direct alias type declarations.

Direct alias type declarations.

def fullName: Traversal[String]

Traverse to fullName property

Traverse to fullName property

def fullName(pattern: String): Traversal[NodeType]

Traverse to nodes where the fullName matches the regular expression value

Traverse to nodes where the fullName matches the regular expression value

def fullName(patterns: String*): Traversal[NodeType]

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

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

def fullNameExact(value: String): Traversal[NodeType]

Traverse to nodes where fullName matches value exactly.

Traverse to nodes where fullName matches value exactly.

def fullNameExact(values: String*): Traversal[NodeType]

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

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

def fullNameNot(pattern: String): Traversal[NodeType]

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

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

def fullNameNot(patterns: String*): Traversal[NodeType]

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

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

def name: Traversal[String]

Traverse to name property

Traverse to name property

def name(pattern: String): Traversal[NodeType]

Traverse to nodes where the name matches the regular expression value

Traverse to nodes where the name matches the regular expression value

def name(patterns: String*): Traversal[NodeType]

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

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

def nameExact(value: String): Traversal[NodeType]

Traverse to nodes where name matches value exactly.

Traverse to nodes where name matches value exactly.

def nameExact(values: String*): Traversal[NodeType]

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

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

def nameNot(pattern: String): Traversal[NodeType]

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

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

def nameNot(patterns: String*): Traversal[NodeType]

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

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

@Doc(info = "Type declaration which is referenced by this type.")

Type declaration which is referenced by this type.

Type declaration which is referenced by this type.

def typeDeclFullName: Traversal[String]

Traverse to typeDeclFullName property

Traverse to typeDeclFullName property

def typeDeclFullName(pattern: String): Traversal[NodeType]

Traverse to nodes where the typeDeclFullName matches the regular expression value

Traverse to nodes where the typeDeclFullName matches the regular expression value

def typeDeclFullName(patterns: String*): Traversal[NodeType]

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

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

def typeDeclFullNameExact(value: String): Traversal[NodeType]

Traverse to nodes where typeDeclFullName matches value exactly.

Traverse to nodes where typeDeclFullName matches value exactly.

def typeDeclFullNameExact(values: String*): Traversal[NodeType]

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

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

def typeDeclFullNameNot(pattern: String): Traversal[NodeType]

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

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

def typeDeclFullNameNot(patterns: String*): Traversal[NodeType]

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

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

Concrete fields

val traversal: IterableOnce[NodeType]