Uses of Class
java.lang.reflect.Constructor
| Package | Description | 
|---|---|
| java.lang | Provides classes that are fundamental to the design of the Java
 programming language. | 
| java.lang.invoke | The  java.lang.invokepackage provides low-level primitives for interacting
 with the Java Virtual Machine. | 
| java.lang.reflect | Provides classes and interfaces for obtaining reflective information about
 classes and objects. | 
| javax.management | Provides the core classes for the Java Management Extensions. | 
| javax.management.modelmbean | Provides the definition of the ModelMBean classes. | 
| jdk.dynalink.linker.support | Contains classes that make it more convenient for language runtimes to
 implement their own language-specific object models and type conversions
 by providing basic implementations of some classes as well as various
 utilities. | 
- 
Uses of Constructor in java.langMethods in java.lang that return Constructor Modifier and Type Method Description Constructor<T>Class. getConstructor(Class<?>... parameterTypes)Returns aConstructorobject that reflects the specified public constructor of the class represented by thisClassobject.Constructor<?>[]Class. getConstructors()Returns an array containingConstructorobjects reflecting all the public constructors of the class represented by thisClassobject.Constructor<T>Class. getDeclaredConstructor(Class<?>... parameterTypes)Returns aConstructorobject that reflects the specified constructor of the class or interface represented by thisClassobject.Constructor<?>[]Class. getDeclaredConstructors()Returns an array ofConstructorobjects reflecting all the constructors declared by the class represented by thisClassobject.Constructor<?>Class. getEnclosingConstructor()If thisClassobject represents a local or anonymous class within a constructor, returns aConstructorobject representing the immediately enclosing constructor of the underlying class.
- 
Uses of Constructor in java.lang.invokeMethods in java.lang.invoke with parameters of type Constructor Modifier and Type Method Description MethodHandleMethodHandles.Lookup. unreflectConstructor(Constructor<?> c)Produces a method handle for a reflected constructor.
- 
Uses of Constructor in java.lang.reflectMethods in java.lang.reflect that return types with arguments of type Constructor Modifier and Type Method Description TypeVariable<Constructor<T>>[]Constructor. getTypeParameters()Returns an array ofTypeVariableobjects that represent the type variables declared by the generic declaration represented by thisGenericDeclarationobject, in declaration order.
- 
Uses of Constructor in javax.managementConstructors in javax.management with parameters of type Constructor Constructor Description MBeanConstructorInfo(String description, Constructor<?> constructor)Constructs anMBeanConstructorInfoobject.
- 
Uses of Constructor in javax.management.modelmbeanConstructors in javax.management.modelmbean with parameters of type Constructor Constructor Description ModelMBeanConstructorInfo(String description, Constructor<?> constructorMethod)Constructs a ModelMBeanConstructorInfo object with a default descriptor.ModelMBeanConstructorInfo(String description, Constructor<?> constructorMethod, Descriptor descriptor)Constructs a ModelMBeanConstructorInfo object.
- 
Uses of Constructor in jdk.dynalink.linker.supportMethods in jdk.dynalink.linker.support with parameters of type Constructor Modifier and Type Method Description static MethodHandleLookup. unreflectConstructor(MethodHandles.Lookup lookup, Constructor<?> c)Performs aMethodHandles.Lookup.unreflectConstructor(Constructor), converting any encounteredIllegalAccessExceptioninto anIllegalAccessError.MethodHandleLookup. unreflectConstructor(Constructor<?> c)Performs aMethodHandles.Lookup.unreflectConstructor(Constructor), converting any encounteredIllegalAccessExceptioninto anIllegalAccessError.