What are the maximum and minimum values of a GregorianCalendar?
Are they in a constant like Integer.MAX_VALUE, or maybe GregorianCalendar.get(BLAH)?
In a nutshell, how can I create a GregorianCalendar instance with min/max value?
|
What are the maximum and minimum values of a GregorianCalendar? Are they in a constant like Integer.MAX_VALUE, or maybe GregorianCalendar.get(BLAH)? In a nutshell, how can I create a GregorianCalendar instance with min/max value? |
|||
|
|
|
This should work:
|
|||||||||||
|
|
I took joekutner's suggestion and ran it with:
Which shows the minimum and maximum, and between them an indication of what happens if you try to move to the second before the minimum - you wrap around. This was version 1.6.0_17. |
|||
|
|
|
You can try to call Calendar.getMinimum() for each type of field (i.e. year, month, etc.) and then set those minimum values on corresponding field types. This would give you the minimum calendar. I don't know if there is a faster way to do that. |
|||
|
|