I have a bunch of static final methods within a final class:
public class final Util{
private Util{}
// do I need the keyword final when the class is already final
public static final util1{..}
public static final util2{..}
public static final util3{..}
}
I know, instance methods are implicitly final when its class is final. However, is this the case also for static methods?