ArrayType
, ClassType
, Field
, InterfaceType
, Method
, ReferenceType
, TypeComponent
public interface Accessible
Modifier and Type | Method | Description |
---|---|---|
boolean |
isPackagePrivate() |
Determines if this object mirrors a package private item. |
boolean |
isPrivate() |
Determines if this object mirrors a private item. |
boolean |
isProtected() |
Determines if this object mirrors a protected item. |
boolean |
isPublic() |
Determines if this object mirrors a public item. |
int |
modifiers() |
Returns the Java programming language modifiers, encoded in an integer. |
int modifiers()
The modifier encodings are defined in The Java Virtual Machine Specification in the access_flag
tables for classes(section 4.1), fields(section 4.5), and methods(section 4.6).
boolean isPrivate()
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 Integer.TYPE
, the return value is always false.true
for items with private access; false
otherwise.boolean isPackagePrivate()
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 Integer.TYPE
, the return value is always false.true
for items with package private access; false
otherwise.boolean isProtected()
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 Integer.TYPE
, the return value is always false.true
for items with private access; false
otherwise.boolean isPublic()
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 Integer.TYPE
, the return value is always true.true
for items with public access; false
otherwise.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/jdk.jdi/com/sun/jdi/Accessible.html