| Package | Description |
|---|---|
| java.lang |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| java.lang.invoke |
| Modifier and Type | Method and Description |
|---|---|
Constructor<T> |
Class.getConstructor(Class<?>... parameterTypes)
Returns a
Constructor object that reflects the specified
public constructor of the class represented by this Class
object. |
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)
Returns a
Constructor object that reflects the specified
constructor of the class or interface represented by this
Class object. |
Constructor<?>[] |
Class.getDeclaredConstructors()
Returns an array of
Constructor objects reflecting all the
constructors declared by the class represented by this
Class object. |
| Modifier and Type | Method and Description |
|---|---|
MethodHandle |
MethodHandles.Lookup.unreflectConstructor(Constructor<?> c)
Produces a method handle for a reflected constructor.
|
Copyright © 2021 API Design. All Rights Reserved.