git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1663430 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2015-03-02 20:54:18 +00:00
parent e124486951
commit 8db46b1d09
2 changed files with 6 additions and 2 deletions

View File

@ -57,14 +57,17 @@ import java.util.regex.Pattern;
* <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4228335">bug</a>/RFE. * <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4228335">bug</a>/RFE.
* </p> * </p>
* *
* <p>Only parsing is supported, but all patterns are compatible with * <p>Only parsing is supported by this class, but all patterns are compatible with
* SimpleDateFormat.</p> * SimpleDateFormat.</p>
* *
* <p>The class operates in lenient mode, so for example a time of 90 minutes is treated as 1 hour 30 minutes.</p>
*
* <p>Timing tests indicate this class is as about as fast as SimpleDateFormat * <p>Timing tests indicate this class is as about as fast as SimpleDateFormat
* in single thread applications and about 25% faster in multi-thread applications.</p> * in single thread applications and about 25% faster in multi-thread applications.</p>
* *
* @version $Id$ * @version $Id$
* @since 3.2 * @since 3.2
* @see FastDatePrinter
*/ */
public class FastDateParser implements DateParser, Serializable { public class FastDateParser implements DateParser, Serializable {
/** /**

View File

@ -53,7 +53,7 @@ import org.apache.commons.lang3.Validate;
* nor will it be as Sun have closed the bug/RFE. * nor will it be as Sun have closed the bug/RFE.
* </p> * </p>
* *
* <p>Only formatting is supported, but all patterns are compatible with * <p>Only formatting is supported by this class, but all patterns are compatible with
* SimpleDateFormat (except time zones and some year patterns - see below).</p> * SimpleDateFormat (except time zones and some year patterns - see below).</p>
* *
* <p>Java 1.4 introduced a new pattern letter, {@code 'Z'}, to represent * <p>Java 1.4 introduced a new pattern letter, {@code 'Z'}, to represent
@ -73,6 +73,7 @@ import org.apache.commons.lang3.Validate;
* *
* @version $Id$ * @version $Id$
* @since 3.2 * @since 3.2
* @see FastDateParser
*/ */
public class FastDatePrinter implements DatePrinter, Serializable { public class FastDatePrinter implements DatePrinter, Serializable {
// A lot of the speed in this class comes from caching, but some comes // A lot of the speed in this class comes from caching, but some comes