public static int myVariable; //Declaring a static variable
public static myMethod() { } //Declaring a static method
public static final double MY_CONSTANT; //Declaring a constant variable that is shared among all instances of the class
public final double MY_CONSTANT; // Declaring a constant variable specific to this instance of the class (best used in a constructor that generates a different constant for each instance)