Invocation

final class Invocation[T](val methodName: Symbol, val args: Any*)

Class whose instances represent an invocation of a private method. Instances of this class contain the name of the private method (methodName) and the arguments to pass to it during the invocation (args). The type parameter, T, is the return type of the private method.

Value parameters:
args

zero to many arguments to pass to the private method when invoked

methodName

a Symbol representing the name of the private method to invoke

Throws:
NullArgumentException

if methodName is null

class Object
trait Matchable
class Any

Value members

Concrete fields

val args: Any*
val methodName: Symbol