The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

PJVM::Access - Access flags and control

SYNOPSIS

DESCRIPTION

INTERFACE

CONSTANTS

ACC_PUBLIC

May be accessed from outside its package.

ACC_PRIVATE

Usable only within the defining class.

ACC_PROTECTED

May be accessed within subclasses.

ACC_STATIC

Shared between instances of the class.

ACC_FINAL

No subclassing allowed or constant.

ACC_SUPER

Treat superclass methods specially when invoked by the invokespecial instruction.

ACC_SYNCHRONIZED

Invocation is wrapped in a monitor lock

ACC_VOLATILE

Cannot be cached.

ACC_TRANSIENT

Not written or read by a persistent object manager.

ACC_NATIVE

Implemented in a language other than Java.

ACC_INTERFACE

Is an interface, not a class.

ACC_ABSTRACT

May not be instantiated.

ACC_STRICT

Floating-point mode is FP-strict

EXPORTS

None by default. Symbols may be requested by name or by using the following tags:

flags

Export all ACC_* constants.