Module jvm_classfile::method::flags
[−]
[src]
Structs
| AccessFlags |
Constants
| ACC_ABSTRACT |
Declared abstract; no implementation is provided. |
| ACC_BRIDGE |
A bridge method, generated by the compiler. |
| ACC_FINAL |
Declared final; must not be overridden (§5.4.5). |
| ACC_NATIVE |
Declared native; implemented in a language other than Java. |
| ACC_PRIVATE |
Declared private; accessible only within the defining class. |
| ACC_PROTECTED |
Declared protected; may be accessed within subclasses. |
| ACC_PUBLIC |
Declared public; may be accessed from outside its package. |
| ACC_STATIC |
Declared static. |
| ACC_STRICT |
Declared strictfp; floating-point mode is FP-strict. |
| ACC_SYNCHRONIZED |
Declared synchronized; invocation is wrapped by a monitor use. |
| ACC_SYNTHETIC |
Declared synthetic; not present in the source code. |
| ACC_VARARGS |
Declared with variable number of arguments. |