Here "lenient " is used in Java DateFormat, i checked the doc. but didn't get.
Can any body please tell me what is the use of this "lenient ", with one real time example where we use it.
|
|
The javadoc clearly states:
So, if you have a pattern and create a date object that strictly matches your pattern, set lenient to Basically,
|
|||||
|
|
For example this:
results in:
|
|||
|
|
|
If date is not lenient it will throw error if you pass out of range date but if is not then it will accept is and fix it . e.g |
|||
|
|
|
DateFormat object is lenient by default. Leniency (Javadoc - Calendar)
|
|||||||||||||
|
|
You can set the date parser as not lenient if you want it to accept strictly a date format you provided. It is well explained in the doc:
|
||||
|
|