MethodSignature

case class MethodSignature(className: String, methodName: String, methodArgs: String*)

Contains method signature in form of className.methodName(methodArgs...) where methodArgs are written as Java types.

Contains method signature in form of className.methodName(methodArgs...) where methodArgs are written as Java types.

Note that it does not contain return type, because we cannot differentiate methods based on their return types.

  // method signature for a method `(range: scala.collection.immutable.Range).by(idx: Int)`
  MethodSignature("scala.collection.immutable.Range", "by", "int").toString == "scala.collection.immutable.Range.by(int)"
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

override def toString: String
Definition Classes
Any

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product