public interface JavaField extends JavaMember
Represents a Java field declaration.
This interface is modelled on java.lang.reflect.Field.
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Object |
get(JavaObject object)
Get the contents of an Object field
|
boolean |
getBoolean(JavaObject object)
Get the contents of a boolean field
|
byte |
getByte(JavaObject object)
Get the contents of a byte field
|
char |
getChar(JavaObject object)
Get the contents of a char field
|
double |
getDouble(JavaObject object)
Get the contents of a double field
|
float |
getFloat(JavaObject object)
Get the contents of a float field
|
int |
getInt(JavaObject object)
Get the contents of an int field
|
long |
getLong(JavaObject object)
Get the contents of a long field
|
short |
getShort(JavaObject object)
Get the contents of a short field
|
java.lang.String |
getString(JavaObject object)
Get the contents of a string field
|
int |
hashCode() |
getDeclaringClass, getModifiers, getName, getSignature
java.lang.Object get(JavaObject object) throws CorruptDataException, MemoryAccessException
object
- to fetch the field from. Ignored for static
fields.This field must be declared in the object's class or in a superclass
CorruptDataException
MemoryAccessException
java.lang.NullPointerException
- if the field is an instance field, and object is nulljava.lang.IllegalArgumentException
- if the specified object is not appropriate for
this fieldJavaObject
,
Byte
,
Double
,
Float
,
Integer
,
Long
,
Short
,
Character
,
Boolean
boolean getBoolean(JavaObject object) throws CorruptDataException, MemoryAccessException
object
- to fetch the field from. Ignored for static fields.CorruptDataException
MemoryAccessException
java.lang.NullPointerException
- if the field is an instance field, and object is nulljava.lang.IllegalArgumentException
- if the specified object is not appropriate for
this field, or if the type of the field cannot be converted to booleanbyte getByte(JavaObject object) throws CorruptDataException, MemoryAccessException
object
- to fetch the field from. Ignored for static fields.CorruptDataException
MemoryAccessException
java.lang.NullPointerException
- if the field is an instance field, and object is nulljava.lang.IllegalArgumentException
- if the specified object is not appropriate for
this field, or if the type of the field cannot be converted to bytechar getChar(JavaObject object) throws CorruptDataException, MemoryAccessException
object
- to fetch the field from. Ignored for static fields.CorruptDataException
MemoryAccessException
java.lang.NullPointerException
- if the field is an instance field, and object is nulljava.lang.IllegalArgumentException
- if the specified object is not appropriate for
this field, or if the type of the field cannot be converted to chardouble getDouble(JavaObject object) throws CorruptDataException, MemoryAccessException
object
- to fetch the field from. Ignored for static fields.CorruptDataException
MemoryAccessException
java.lang.NullPointerException
- if the field is an instance field, and object is nulljava.lang.IllegalArgumentException
- if the specified object is not appropriate for
this field, or if the type of the field cannot be converted to doublefloat getFloat(JavaObject object) throws CorruptDataException, MemoryAccessException
object
- to fetch the field from. Ignored for static fields.CorruptDataException
MemoryAccessException
java.lang.NullPointerException
- if the field is an instance field, and object is nulljava.lang.IllegalArgumentException
- if the specified object is not appropriate for
this field, or if the type of the field cannot be converted to floatint getInt(JavaObject object) throws CorruptDataException, MemoryAccessException
object
- to fetch the field from. Ignored for static fields.CorruptDataException
MemoryAccessException
java.lang.NullPointerException
- if the field is an instance field, and object is nulljava.lang.IllegalArgumentException
- if the specified object is not appropriate for
this field, or if the type of the field cannot be converted to intlong getLong(JavaObject object) throws CorruptDataException, MemoryAccessException
object
- to fetch the field from. Ignored for static fields.CorruptDataException
MemoryAccessException
java.lang.NullPointerException
- if the field is an instance field, and object is nulljava.lang.IllegalArgumentException
- if the specified object is not appropriate for
this field, or if the type of the field cannot be converted to longshort getShort(JavaObject object) throws CorruptDataException, MemoryAccessException
object
- to fetch the field from. Ignored for static fields.CorruptDataException
MemoryAccessException
java.lang.NullPointerException
- if the field is an instance field, and object is nulljava.lang.IllegalArgumentException
- if the specified object is not appropriate for
this field, or if the type of the field cannot be converted to shortjava.lang.String getString(JavaObject object) throws CorruptDataException, MemoryAccessException
object
- to fetch the field from. Ignored for static fields.CorruptDataException
MemoryAccessException
java.lang.IllegalArgumentException
- if the specified field is not a Stringjava.lang.NullPointerException
- if the field is an instance field, and object is nullboolean equals(java.lang.Object obj)
equals
in interface JavaMember
equals
in class java.lang.Object
obj
- int hashCode()
hashCode
in interface JavaMember
hashCode
in class java.lang.Object
© Copyright 2005, 2012 IBM Corporation. All Rights Reserved.