How To Write Static class In Java
A static class in Java is a class that does not have any instance variables. They are known as constant variables. The only method of the class will be a constructor and no getter or setter methods are allowed. These are also known as read-only fiel ...