What Does Static Method Mean?
In Java, a static method is a method that belongs to a class rather than an instance of a class. The method is accessible to every instance of a class, but methods defined in an instance are only able to be accessed by that object of a class.
Techopedia Explains Static Method
Java allows developers to define static methods, which are also available to every instance of a class.