|
![]() |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Constructor | |
---|---|
java.lang | Provides classes that are fundamental to the design of the Java programming language. |
javax.management | Provides the core classes for the Java Management Extensions. |
javax.management.modelmbean | Provides the definition of the ModelMBean classes. |
javax.realtime | Jamaica's implementation of the Real-Time Specification for Java. |
Uses of Constructor in java.lang |
---|
Methods in java.lang that return Constructor | |
---|---|
Constructor<T> |
Class.getConstructor(Class<?>... parameterTypes)
getConstructor finds the public constructor with given parameter types in this class. |
Constructor<?>[] |
Class.getConstructors()
getConstructors returns an array of all public constructors of this class. |
Constructor<T> |
Class.getDeclaredConstructor(Class<?>... parameterTypes)
getDeclaredConstructor searches for a constructor with given parameter types in this clss. |
Constructor<T>[] |
Class.getDeclaredConstructors()
getDeclaredConstructors returns an array of all constructors declared in this class. |
Constructor<?> |
Class.getEnclosingConstructor()
If this Class object represents a local or anonymous
class within a constructor, returns a Constructor object representing
the immediately enclosing constructor of the underlying
class. |
Uses of Constructor in javax.management |
---|
Constructors in javax.management with parameters of type Constructor | |
---|---|
MBeanConstructorInfo(String description,
Constructor constructor)
Constructs an MBeanConstructorInfo object. |
Uses of Constructor in javax.management.modelmbean |
---|
Constructors in javax.management.modelmbean with parameters of type Constructor | |
---|---|
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 javax.realtime |
---|
Methods in javax.realtime with parameters of type Constructor | |
---|---|
Object |
MemoryArea.newInstance(Constructor<?> c,
Object[] args)
newInstance allocates a new instance using the given constructor and passing arguments to this constructor. |
|
![]() |
|||||||||
PREV NEXT | FRAMES NO FRAMES |