| Package | Description |
|---|---|
| java.io | |
| java.lang | |
| java.lang.reflect |
Provides classes and interfaces for obtaining reflective
information about classes and objects.
|
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
ObjectOutputStream.enableReplaceObject(boolean enable)
Enable the stream to do replacement of objects in the stream.
|
protected boolean |
ObjectInputStream.enableResolveObject(boolean enable)
Enable the stream to allow objects read from the stream to be replaced.
|
| Constructor and Description |
|---|
ObjectInputStream()
Provide a way for subclasses that are completely reimplementing
ObjectInputStream to not have to allocate private data just used by this
implementation of ObjectInputStream.
|
ObjectOutputStream()
Provide a way for subclasses that are completely reimplementing
ObjectOutputStream to not have to allocate private data just used by
this implementation of ObjectOutputStream.
|
| Modifier and Type | Method and Description |
|---|---|
Method[] |
Class.getDeclaredMethods()
Returns an array of
Method objects reflecting all the
methods declared by the class or interface represented by this
Class object. |
Field |
Class.getField(String name)
Returns a
Field object that reflects the specified public
member field of the class or interface represented by this
Class object. |
Field[] |
Class.getFields()
Returns an array containing
Field objects reflecting all
the accessible public fields of the class or interface represented by
this Class object. |
Method |
Class.getMethod(String name,
Class<?>... parameterTypes)
Returns a
Method object that reflects the specified public
member method of the class or interface represented by this
Class object. |
Method[] |
Class.getMethods()
Returns an array containing
Method objects reflecting all
the public member methods of the class or interface represented
by this Class object, including those declared by the class
or interface and those inherited from superclasses and
superinterfaces. |
| Modifier and Type | Method and Description |
|---|---|
static void |
AccessibleObject.setAccessible(AccessibleObject[] array,
boolean flag)
Convenience method to set the
accessible flag for an
array of objects with a single security check (for efficiency). |
void |
AccessibleObject.setAccessible(boolean flag)
Set the
accessible flag for this object to
the indicated boolean value. |
Copyright © 2013 API Design. All Rights Reserved.