Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
There are a number of classes in the Java core libraries that contain static final fields. One of them is the java.util.Calendar class, that has the static final fields representing days of the week (MONDAY, TUESDAY, etc). To use a static final field in the Calendar class, you must first import the Calendar class.
import java.util.Calendar;