Is there anything like static class in java?
static class
What is the meaning of such a class. Do all the methods of the static class need to be static
static
Outer classes cannot be static, but nested/inner classes can be. That basically helps you to use the nested/inner class without creating an instance of the outer class.