public interface AccessFlags
| Modifier and Type | Field and Description |
|---|---|
static int |
ACC_ABSTRACT
Declared abstract; may not be instantiated.
|
static int |
ACC_ANNOTATION
Declared as an annotation type.
|
static int |
ACC_ENUM
Declared as an enum type.
|
static int |
ACC_FINAL
Declared final; no subclasses allowed.
|
static int |
ACC_INTERFACE
Is an interface, not a class.
|
static int |
ACC_NATIVE
Declared native; implemented in a language other than Java.
|
static int |
ACC_PRIVATE
Declared private; usable only within the defining class.
|
static int |
ACC_PROTECTED
Declared protected; may be accessed within subclasses.
|
static int |
ACC_PUBLIC
Declared public; may be accessed from outside its package.
|
static int |
ACC_STATIC
Declared static.
|
static int |
ACC_STRICT
Declared strictfp; floating-point mode is FP-strict.
|
static int |
ACC_SUPER
Treat superclass methods specially when invoked by the
invokespecial instruction.
|
static int |
ACC_SYNCHRONIZED
Declared synchronized; invocation is wrapped in a monitor block.
|
static int |
ACC_SYNTHETIC
Declared synthetic
|
static int |
ACC_TRANSIENT
Declared transient; not written or read by a persistent object manager.
|
static int |
ACC_VOLATILE
Declared volatile; cannot be cached.
|
static final int ACC_PUBLIC
static final int ACC_PRIVATE
static final int ACC_PROTECTED
static final int ACC_STATIC
static final int ACC_FINAL
static final int ACC_SUPER
static final int ACC_SYNCHRONIZED
static final int ACC_VOLATILE
static final int ACC_TRANSIENT
static final int ACC_NATIVE
static final int ACC_INTERFACE
static final int ACC_ABSTRACT
static final int ACC_STRICT
static final int ACC_SYNTHETIC
synthetic
- See Also:
- Constant Field Values
-
ACC_ANNOTATION
static final int ACC_ANNOTATION
Declared as an annotation type.
- See Also:
- Constant Field Values
-
ACC_ENUM
static final int ACC_ENUM
Declared as an enum type.
- See Also:
- Constant Field Values