Package | Description |
---|---|
jmplib.reflect |
Modifier and Type | Method and Description |
---|---|
static Constructor<?>[] |
IntrospectionUtils.decorateConstructorList(java.lang.reflect.Constructor<?>[] methodList)
Decorates a list of java.lang.reflect.Constructor
|
Constructor<?> |
Class.getConstructor(Class<?>... parameterTypes) |
Constructor<?>[] |
Class.getConstructors()
Returns an array containing
Constructor objects reflecting
all the public constructors of the class represented by this
Class object. |
Constructor<T> |
Class.getDeclaredConstructor(Class<?>... parameterTypes) |
Constructor<?>[] |
Class.getDeclaredConstructors()
Returns an array of
Constructor objects reflecting all the
constructors declared by the class represented by this
Class object. |
Constructor<?> |
Class.getEnclosingConstructor()
If this
Class object represents a local or anonymous
class within a constructor, returns a java.lang.reflect.Constructor Constructor object representing the immediately enclosing constructor of the underlying class. |