Module rust_jvm::model::class_file::access_flags::method_access_flags [] [src]

Values of access flags for a method.

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 overriden.

ACC_NATIVE

Declared native; implemented in a language other than Java.

ACC_PRIVATE

Declared private; usable 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.

Type Definitions

access_flag
t