Static Methods in Java
Static methods are defined at class level and can be accessed without instances. Static methods are resolved at compile-time based on class definition. Static methods cannot reference instance members or call instance methods
- baeldung.com