4. A Class Factory Method that converts from int to Month.
- By Kevlin Henney
- March 15, 2000
Listing 4. A Class Factory Method that converts from int to Month.
public final class Month ...
{
...
public static Month valueOf(int month)
{ return months[month - 1]; }
private static final Month[] months =
{ january, ..., december };
...
}
About the Author
Kevlin Henney is a Principal Technologist with QA Training in the UK.