Package | Description |
---|---|
java.lang |
Provides classes that are fundamental to the design of the Java
programming language.
|
java.lang.invoke |
The
java.lang.invoke package contains dynamic language support provided directly by
the Java core class libraries and virtual machine. |
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.
|
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. |
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. |
Modifier and Type | Method and Description |
---|---|
MethodHandle |
MethodHandles.Lookup.unreflectConstructor(Constructor<?> c)
Produces a method handle for a reflected constructor.
|
Constructor and Description |
---|
MBeanConstructorInfo(String description,
Constructor<?> constructor)
Constructs an
MBeanConstructorInfo object. |
Constructor and 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.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
MemoryArea.newInstance(Constructor<T> c,
Object[] args)
Allocates a new instance using the given constructor
and passing arguments to this constructor.
|
<T> T |
ScopedMemory.newInstance(Constructor<T> c,
Object[] args)
Allocates an object in this memory area.
|
aicas GmbH, Karlsruhe, Germany —www.aicas.com
Copyright © 2001-2019 aicas GmbH. All Rights Reserved.