List of usage examples for org.apache.commons.lang3.time DateFormatUtils ISO_DATE_FORMAT
FastDateFormat ISO_DATE_FORMAT
To view the source code for org.apache.commons.lang3.time DateFormatUtils ISO_DATE_FORMAT.
Click Source Link
From source file:psyriccio.voteflow.api.LawAPI.java
public Date date(String dateStr) { try {/* w ww. j a v a2 s. c o m*/ return DateFormatUtils.ISO_DATE_FORMAT.parse(dateStr); } catch (ParseException ex) { return null; } }