Checkstyle - mosinn/DOCS-n-Snippets-n-Steps GitHub Wiki

Mark class as utility , adds final, private constructor

@UtilityClass (Lombok) useful for final marking with private invisible constructor

No Arg Constructor useful generation by Lombok

@NoArgsConstructor

Disable check-style error on a code block

@//CHECKSTYLE:OFF public void someMethod(String arg1, String arg2, String arg3, String arg4) { //CHECKSTYLE:ON