enum is
introduced in J2SE-5 version, we can represent a group of named constants by
using enum. The main objective of enum is to define our own datatypes.
enum Week
{
SUN,MON,TUS,WED,THU,FRI,SAT;
}