com.sun.jdi.Field |
![]() |
A class or instance variable in the target VM.
See TypeComponent
for general information about Field and Method mirrors.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Compares the specified Object with this field for equality.
| |||||||||||
Returns the hash code value for this Field.
| |||||||||||
Determine if this is a field that represents an enum constant.
| |||||||||||
Determine if this is a transient field.
| |||||||||||
Determine if this is a volatile field.
| |||||||||||
Returns the type of this field.
| |||||||||||
Returns a text representation of the type
of this field.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Compares the specified Object with this field for equality.
obj | the reference object with which to compare. |
---|
Returns the hash code value for this Field.
Determine if this is a field that represents an enum constant.
true
if this field represents an enum constant;
false otherwise.
Determine if this is a transient field.
true
if this field is transient; false otherwise.
Determine if this is a volatile field.
true
if this field is volatile; false otherwise.
Returns the type of this field. Where the type is the type specified in the declaration of this field.
For example, if a target class defines:
short s; Date d; byte[] ba;And the JDI client defines these
Field
objects:
Field sField = targetClass.fieldByName("s"); Field dField = targetClass.fieldByName("d"); Field baField = targetClass.fieldByName("ba");to mirror the corresponding fields, then
sField.type()
is a ShortType
, dField.type()
is the
ReferenceType
for java.util.Date
and
((ArrayType)(baField.type())).componentType()
is a
ByteType
.
Note: if the type of this field is a reference type (class,
interface, or array) and it has not been created or loaded
by the declaring type's class loader - that is,
declaringType()
.classLoader()
,
then ClassNotLoadedException will be thrown.
Also, a reference type may have been loaded but not yet prepared,
in which case the type will be returned
but attempts to perform some operations on the returned type
(e.g. fields()
) will throw
a ClassNotPreparedException
.
Use isPrepared()
to determine if
a reference type is prepared.
Type
of this field.ClassNotLoadedException | if the type has not yet been loaded or created through the appropriate class loader. |
---|
Returns a text representation of the type of this field. Where the type is the type specified in the declaration of this field.
This type name is always available even if the type has not yet been created or loaded.