Package jodd.paramo
Class Paramo
- java.lang.Object
-
- jodd.paramo.Paramo
-
public class Paramo extends java.lang.ObjectExtracts method or constructor parameter names from bytecode debug information in runtime.
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.lang.StringCTOR_METHOD
-
Constructor Summary
Constructors Constructor Description Paramo()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MethodParameter[]resolveParameters(java.lang.reflect.AccessibleObject methodOrCtor)Resolves method parameters from a method or constructor.
-
-
-
Field Detail
-
CTOR_METHOD
protected static final java.lang.String CTOR_METHOD
- See Also:
- Constant Field Values
-
-
Method Detail
-
resolveParameters
public static MethodParameter[] resolveParameters(java.lang.reflect.AccessibleObject methodOrCtor)
Resolves method parameters from a method or constructor. Returns an empty array when target does not contain any parameter. No caching is involved in this process, i.e. class bytecode is examined every time this method is called.
-
-