Valid modifiers are the access modifiers: public, protected, and private The special modifiers: final, static, transient, and volatile. public class MainClass { public final static int i = 0; public static void main(String[] argv) { System.out.println(); } }