|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xml.utils.synthetic.reflection.Field
**For internal use only** A Field provides information about, and dynamic access to, a single field of a class or an interface. The reflected field may be a class (static) field or an instance field.
A Field permits widening conversions to occur during a get or set access operation, but throws an IllegalArgumentException if a narrowing conversion would occur.
Field Summary | |
java.lang.String |
initializer
Field name, initializer |
java.lang.String |
name
Field name, initializer |
Constructor Summary | |
Field(java.lang.reflect.Field realfield,
Class declaringClass)
Proxy constructor |
|
Field(java.lang.String name,
Class declaringClass)
Synthesis constructor |
Method Summary | |
boolean |
equals(java.lang.Object obj)
Compares this Field against the specified object. |
java.lang.Object |
get(java.lang.Object obj)
Returns the value of the field represented by this Field, on the specified object. |
boolean |
getBoolean(java.lang.Object obj)
Get the value of a field as a boolean on specified object. |
byte |
getByte(java.lang.Object obj)
Get the value of a field as a byte on specified object. |
char |
getChar(java.lang.Object obj)
Get the value of a field as a char on specified object. |
Class |
getDeclaringClass()
Returns the Class object representing the class or interface that declares the field represented by this Field object. |
double |
getDouble(java.lang.Object obj)
Get the value of a field as a double on specified object. |
float |
getFloat(java.lang.Object obj)
Get the value of a field as a float on specified object. |
java.lang.String |
getInitializer()
Method getInitializer (getInitializer) @return |
int |
getInt(java.lang.Object obj)
Get the value of a field as a int on specified object. |
long |
getLong(java.lang.Object obj)
Get the value of a field as a long on specified object. |
int |
getModifiers()
Returns the Java language modifiers for the field represented by this Field object, as an integer. |
java.lang.String |
getName()
Insert the method's description here. |
short |
getShort(java.lang.Object obj)
Get the value of a field as a short on specified object. |
Class |
getType()
Returns a Class object that identifies the declared type for the field represented by this Field object. |
int |
hashCode()
Returns a hashcode for this Field. |
void |
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 |
setBoolean(java.lang.Object obj,
boolean z)
Set the value of a field as a boolean on specified object. |
void |
setByte(java.lang.Object obj,
byte b)
Set the value of a field as a byte on specified object. |
void |
setChar(java.lang.Object obj,
char c)
Set the value of a field as a char on specified object. |
void |
setDeclaringClass(Class declaringClass)
Returns the Class object representing the class that declares the constructor represented by this Constructor object. |
void |
setDouble(java.lang.Object obj,
double d)
Set the value of a field as a double on specified object. |
void |
setFloat(java.lang.Object obj,
float f)
Set the value of a field as a float on specified object. |
void |
setInitializer(java.lang.String i)
Method setInitializer |
void |
setInt(java.lang.Object obj,
int i)
Set the value of a field as an int on specified object. |
void |
setLong(java.lang.Object obj,
long l)
Set the value of a field as a long on specified object. |
void |
setModifiers(int modifiers)
Insert the method's description here. |
void |
setShort(java.lang.Object obj,
short s)
Set the value of a field as a short on specified object. |
void |
setType(Class type)
Method setType |
java.lang.String |
toSource()
Output the Field as Java sourcecode |
java.lang.String |
toString()
Return a string describing this Field. |
Methods inherited from class java.lang.Object |
getClass,
notify,
notifyAll,
wait,
wait,
wait |
Field Detail |
public java.lang.String name
public java.lang.String initializer
Constructor Detail |
public Field(java.lang.reflect.Field realfield, Class declaringClass)
realfield
- declaringClass
- public Field(java.lang.String name, Class declaringClass)
name
- declaringClass
- Method Detail |
public boolean equals(java.lang.Object obj)
obj
- public java.lang.Object get(java.lang.Object obj) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
The underlying field's value is obtained as follows:
If the underlying field is a static field, the object argument is ignored; it may be null.
Otherwise, the underlying field is an instance field. If the specified object argument is null, the method throws a NullPointerException. If the specified object is not an instance of the class or interface declaring the underlying field, the method throws an IllegalArgumentException.
If this Field object enforces Java language access control, and the underlying field is inaccessible, the method throws an IllegalAccessException.
Otherwise, the value is retrieved from the underlying instance or static field. If the field has a primitive type, the value is wrapped in an object before being returned, otherwise it is returned as is.
obj
- public boolean getBoolean(java.lang.Object obj) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- public byte getByte(java.lang.Object obj) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- public char getChar(java.lang.Object obj) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- public Class getDeclaringClass()
public double getDouble(java.lang.Object obj) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- public float getFloat(java.lang.Object obj) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- public int getInt(java.lang.Object obj) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- public long getLong(java.lang.Object obj) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- public int getModifiers()
public java.lang.String getInitializer()
public void setInitializer(java.lang.String i) throws SynthesisException
i
- public java.lang.String getName()
public short getShort(java.lang.Object obj) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- public Class getType()
public void setType(Class type) throws SynthesisException
type
- public int hashCode()
public void set(java.lang.Object obj, java.lang.Object value) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- value
- public void setBoolean(java.lang.Object obj, boolean z) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- z
- public void setByte(java.lang.Object obj, byte b) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- b
- public void setChar(java.lang.Object obj, char c) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- c
- public void setDeclaringClass(Class declaringClass)
declaringClass
- public void setDouble(java.lang.Object obj, double d) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- d
- public void setFloat(java.lang.Object obj, float f) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- f
- public void setInt(java.lang.Object obj, int i) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- i
- public void setLong(java.lang.Object obj, long l) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- l
- public void setModifiers(int modifiers) throws SynthesisException
modifiers
- intpublic void setShort(java.lang.Object obj, short s) throws java.lang.IllegalArgumentException, java.lang.IllegalAccessException
obj
- s
- public java.lang.String toString()
public static final int java.lang.Thread.MIN_PRIORITY
private int java.io.FileDescriptor.fd
The modifiers are placed in canonical order as
specified by "The Java Language Specification".
This is public, protected or private first,
and then other modifiers in the following order:
static, final, transient, volatile.public java.lang.String toSource()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |