com.sun.jdi.Accessible |
![]() |
Provides information on the accessibility of a type or type component. Mirrors for program elements which allow an an access specifier (private, protected, public) provide information on that part of the declaration through this interface.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Determines if this object mirrors a package private item.
| |||||||||||
Determines if this object mirrors a private item.
| |||||||||||
Determines if this object mirrors a protected item.
| |||||||||||
Determines if this object mirrors a public item.
| |||||||||||
Returns the JavaTM
programming language modifiers, encoded in an integer.
|
Determines if this object mirrors a package private item.
A package private item is declared with no access specifier.
For ArrayType
, the return value depends on the
array component type. For primitive arrays the return value
is always false. For object arrays, the return value is the
same as would be returned for the component type.
For primitive classes, such as TYPE
,
the return value is always false.
true
for items with package private access;
false
otherwise.
Determines if this object mirrors a private item.
For ArrayType
, the return value depends on the
array component type. For primitive arrays the return value
is always false. For object arrays, the return value is the
same as would be returned for the component type.
For primitive classes, such as TYPE
,
the return value is always false.
true
for items with private access;
false
otherwise.
Determines if this object mirrors a protected item.
For ArrayType
, the return value depends on the
array component type. For primitive arrays the return value
is always false. For object arrays, the return value is the
same as would be returned for the component type.
For primitive classes, such as TYPE
,
the return value is always false.
true
for items with private access;
false
otherwise.
Determines if this object mirrors a public item.
For ArrayType
, the return value depends on the
array component type. For primitive arrays the return value
is always true. For object arrays, the return value is the
same as would be returned for the component type.
For primitive classes, such as TYPE
,
the return value is always true.
true
for items with public access;
false
otherwise.
Returns the JavaTM programming language modifiers, encoded in an integer.
The modifier encodings are defined in the
Java Virtual Machine
Specification, in the access_flag
tables for
classes,
fields, and
methods.