|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IllegalAccessException | |
java.lang.reflect |
Uses of IllegalAccessException in java.lang.reflect |
Methods in java.lang.reflect that throw IllegalAccessException | |
java.lang.Object |
Constructor.newInstance(java.lang.Object[] initargs)
Uses the constructor represented by this Constructor object to
create and initialize a new instance of the constructor's
declaring class, with the specified initialization parameters.
|
java.lang.Object |
Method.invoke(java.lang.Object obj,
java.lang.Object[] args)
Invokes the underlying method represented by this Method
object, on the specified object with the specified parameters.
|
java.lang.Object |
Field.get(java.lang.Object obj)
Returns the value of the field represented by this Field , on
the specified object. |
boolean |
Field.getBoolean(java.lang.Object obj)
Gets the value of a static or instance boolean field. |
byte |
Field.getByte(java.lang.Object obj)
Gets the value of a static or instance byte field. |
char |
Field.getChar(java.lang.Object obj)
Gets the value of a static or instance field of type char or of another primitive type convertible to
type char via a widening conversion. |
short |
Field.getShort(java.lang.Object obj)
Gets the value of a static or instance field of type short or of another primitive type convertible to
type short via a widening conversion. |
int |
Field.getInt(java.lang.Object obj)
Gets the value of a static or instance field of type int or of another primitive type convertible to
type int via a widening conversion. |
long |
Field.getLong(java.lang.Object obj)
Gets the value of a static or instance field of type long or of another primitive type convertible to
type long via a widening conversion. |
float |
Field.getFloat(java.lang.Object obj)
Gets the value of a static or instance field of type float or of another primitive type convertible to
type float via a widening conversion. |
double |
Field.getDouble(java.lang.Object obj)
Gets the value of a static or instance field of type double or of another primitive type convertible to
type double via a widening conversion. |
void |
Field.set(java.lang.Object obj,
java.lang.Object value)
Sets the field represented by this Field object on the
specified object argument to the specified new value. |
void |
Field.setBoolean(java.lang.Object obj,
boolean z)
Sets the value of a field as a boolean on the specified object.
|
void |
Field.setByte(java.lang.Object obj,
byte b)
Sets the value of a field as a byte on the specified object.
|
void |
Field.setChar(java.lang.Object obj,
char c)
Sets the value of a field as a char on the specified object.
|
void |
Field.setShort(java.lang.Object obj,
short s)
Sets the value of a field as a short on the specified object.
|
void |
Field.setInt(java.lang.Object obj,
int i)
Sets the value of a field as an int on the specified object.
|
void |
Field.setLong(java.lang.Object obj,
long l)
Sets the value of a field as a long on the specified object.
|
void |
Field.setFloat(java.lang.Object obj,
float f)
Sets the value of a field as a float on the specified object.
|
void |
Field.setDouble(java.lang.Object obj,
double d)
Sets the value of a field as a double on the specified object.
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |