Public: This is an access modifier, and it is used to specify who can access a particular method. When you say public, the method is accessible to any given class.
Static: This keyword in Java tells us that it is class-based, which means it can be accessed without creating the instance of any particular class.
Void: Void defines a method that does not return any value. So this is the return-related method.