Returns the modifier flags for this ClassNode, combining visibility and behavioral modifiers. The flags are represented as a bitmask using ASM/bytecode conventions (e.g., ACC_PUBLIC, ACC_ABSTRACT, ACC_INTERFACE, ACC_ENUM). This method follows redirects if pres
()
| 507 | * @see #isEnum() |
| 508 | */ |
| 509 | public int getModifiers() { |
| 510 | return redirect().modifiers; |
| 511 | } |
| 512 | |
| 513 | /** |
| 514 | * Sets the modifier flags for this {@link ClassNode}. |