Class MethodDescriptor

java.lang.Object
org.ojalgo.concurrent.MethodDescriptor
All Implemented Interfaces:
Serializable

public final class MethodDescriptor extends Object implements Serializable
Description of a (static) method to invoke in a child JVM. Uses type names internally to avoid ClassLoader mismatches.

In Java, a method is identified for reflective lookup by its name and parameter types only. The return type is not used to resolve a method and cannot disambiguate overloads (two methods cannot differ only by return type).

See Also: