Example usage for org.apache.commons.lang3.time DateFormatUtils ISO_DATE_FORMAT

List of usage examples for org.apache.commons.lang3.time DateFormatUtils ISO_DATE_FORMAT

Introduction

In this page you can find the example usage for org.apache.commons.lang3.time DateFormatUtils ISO_DATE_FORMAT.

Prototype

FastDateFormat ISO_DATE_FORMAT

To view the source code for org.apache.commons.lang3.time DateFormatUtils ISO_DATE_FORMAT.

Click Source Link

Document

ISO 8601 formatter for date without time zone.

Usage

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;
    }
}