AccFlags |
AccFlags.flags(Set<String> flags) |
|
AccFlags |
AccFlags.withAbstract(boolean v) |
set abstract
|
AccFlags |
AccFlags.withAnnotation(boolean v) |
set declared as an annotation type.
|
AccFlags |
AccFlags.withBridge(boolean v) |
A bridge method, generated by the compiler.
|
AccFlags |
AccFlags.withDeprecated(boolean v) |
|
AccFlags |
AccFlags.withEnum(boolean v) |
Declared as an enum type.
|
AccFlags |
AccFlags.withFinal(boolean v) |
Declared final; no subclasses allowed.
|
AccFlags |
AccFlags.withInterface(boolean v) |
set Is an interface, not a class.
|
AccFlags |
AccFlags.withMandated(boolean v) |
Indicates that the formal parameter was implicitly declared in source code,
according to the specification of the language in which the source code was written (JLS §13.1).
|
AccFlags |
AccFlags.withModule(boolean v) |
set a module, not a class or interface.
|
AccFlags |
AccFlags.withNative(boolean v) |
Declared native; implemented in a language other than the Java programming language.
|
AccFlags |
AccFlags.withOpen(boolean v) |
Indicates that this module is open.
|
AccFlags |
AccFlags.withPrivate(boolean v) |
Declared private; accessible only within the defining class.
|
AccFlags |
AccFlags.withProtected(boolean v) |
Declared protected; may be accessed within subclasses.
|
AccFlags |
AccFlags.withPublic(boolean v) |
Declared public; may be accessed from outside its package.
|
AccFlags |
AccFlags.withRecord(boolean v) |
|
AccFlags |
AccFlags.withStatic(boolean v) |
Declared static.
|
AccFlags |
AccFlags.withStaticPhase(boolean v) |
Indicates that this dependence is mandatory in the static phase, i.e., at compile time, but is optional in the dynamic phase, i.e., at run time.
|
AccFlags |
AccFlags.withStrict(boolean v) |
Declared strictfp; floating-point mode is FP-strict.
|
AccFlags |
AccFlags.withSuper(boolean v) |
Treat superclass methods specially when invoked by the invokespecial instruction.
|
AccFlags |
AccFlags.withSynchronized(boolean v) |
Declared synchronized; invocation is wrapped by a monitor use.
|
AccFlags |
AccFlags.withSynthetic(boolean v) |
set Declared synthetic; not present in the source code.
|
AccFlags |
AccFlags.withTransient(boolean v) |
Declared transient; not written or read by a persistent object manager.
|
AccFlags |
AccFlags.withTransitive(boolean v) |
Indicates that any module which depends on the current module, implicitly declares a dependence on the module indicated by this entry.
|
AccFlags |
AccFlags.withVarArgs(boolean v) |
Declared with variable number of arguments.
|
AccFlags |
AccFlags.withVolatile(boolean v) |
Declared volatile; cannot be cached.
|