Modifiers Order
The Java Language Specification recommends listing modifiers in the following order:
- Annotations
- public/protected/private
- abstract
- static
- final
- transient
- volatile
- synchronized
- native
- strictfp
The Java Language Specification recommends listing modifiers in the following order: