I'd like to know if there is a "standard" Java implementation of a DateBuilder before I build one myself. I have looked in the java API and Apache Commons and can't seem to find reference to one.
I am looking for something simple that would implement an interface like:
Date date = new DateBuilder().month(2).year(1).build();
where date
would be July 12, 2010 (assuming today is May 12).
Also, please no references to Joda Time.