SonarLint: Java - Modifiers should be declared in the correct order (squid:ModifiersOrderCheck)
The correct order of the modifier in the java is
The Java Language Specification recommends listing modifiers in the following order:
Annotations
public
protected
private
abstract
static
final
transient
volatile
synchronized
native
stric...