final class MethodSummaryTraversal[NodeType <: MethodSummary] extends AnyVal
Traversal steps for MethodSummary
- Alphabetic
- By Inheritance
- MethodSummaryTraversal
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new MethodSummaryTraversal(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 binarySignature(regexes: String*): Traversal[NodeType]
Traverse to nodes where the binarySignature matches at least one of the regular expressions in
values
- def binarySignature(regex: String): Traversal[NodeType]
Traverse to nodes where the binarySignature matches the regular expression
value
- def binarySignature: Traversal[String]
Traverse to binarySignature property
- def binarySignatureExact(values: String*): Traversal[NodeType]
Traverse to nodes where binarySignature matches one of the elements in
values
exactly. - def binarySignatureExact(value: String): Traversal[NodeType]
Traverse to nodes where binarySignature matches
value
exactly. - def binarySignatureNot(values: String*): Traversal[NodeType]
Traverse to nodes where binarySignature does not match any of the regular expressions in
values
. - def binarySignatureNot(regex: String): Traversal[NodeType]
Traverse to nodes where binarySignature does not match the regular expression
value
. - def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def isExternal(value: Boolean): Traversal[NodeType]
Traverse to nodes where the isExternal equals the given
value
- def isExternal: Traversal[Boolean]
Traverse to isExternal property
- def isExternalNot(value: Boolean): Traversal[NodeType]
Traverse to nodes where isExternal is not equal to the given
value
. - final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isStatic(value: Boolean): Traversal[NodeType]
Traverse to nodes where the isStatic equals the given
value
- def isStatic: Traversal[Boolean]
Traverse to isStatic property
- def isStaticNot(value: Boolean): Traversal[NodeType]
Traverse to nodes where isStatic is not equal to the given
value
. - def toString(): String
- Definition Classes
- Any
- val traversal: Traversal[NodeType]