| org.netbeans.lib.profiler.heap.Field
All known Subclasses: org.netbeans.lib.profiler.heap.HprofField,
Field | public interface Field (Code) | | represens field (static or instace) of the class.
author: Tomas Hurka |
getDeclaringClass | JavaClass getDeclaringClass()(Code) | | returns declaring class for this field.
speed: fast
JavaClass where this field is declared |
getName | String getName()(Code) | | returns name of the field.
speed: fast
name of the field |
getType | Type getType()(Code) | | returns the type of field (object, int, boolean, etc.). Note that all java objects
have type "object", there is no difference between java.lang.String and java.util.List.
Speed: fast
type of field |
isStatic | boolean isStatic()(Code) | | distinguish between static and instance field.
speed: fast
returns true if the field is defined as static, false otherwise |
|
|