Return-Path: Delivered-To: apmail-commons-issues-archive@locus.apache.org Received: (qmail 61724 invoked from network); 19 Nov 2007 19:39:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Nov 2007 19:39:05 -0000 Received: (qmail 31161 invoked by uid 500); 19 Nov 2007 19:38:51 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 31091 invoked by uid 500); 19 Nov 2007 19:38:51 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 31082 invoked by uid 99); 19 Nov 2007 19:38:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Nov 2007 11:38:51 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Nov 2007 19:38:49 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 0880C71422B for ; Mon, 19 Nov 2007 11:38:43 -0800 (PST) Message-ID: <5926847.1195501123025.JavaMail.jira@brutus> Date: Mon, 19 Nov 2007 11:38:43 -0800 (PST) From: "Nathan Silberman (JIRA)" To: issues@commons.apache.org Subject: [jira] Commented: (LANG-350) New RandomDateUtils class in the lang.time package MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LANG-350?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12543649 ] Nathan Silberman commented on LANG-350: --------------------------------------- I can confirm that my teams' use for this is primary for testing purposes, similar to RandomStringUtils > New RandomDateUtils class in the lang.time package > -------------------------------------------------- > > Key: LANG-350 > URL: https://issues.apache.org/jira/browse/LANG-350 > Project: Commons Lang > Issue Type: New Feature > Affects Versions: 2.3 > Reporter: Nathan Silberman > Priority: Minor > Fix For: 3.0 > > Attachments: RandomDateUtils.java, RandomDateUtilsTest.java > > > A new RandomDateUtils class that would provide methods for returning random datetimes and random simple dates. Its functionality would include but not limited to the following: > /* > * Random datetime after Janurary 1st, 1970 > */ > public static Date randomDate(); > /* > * A Random datetime after the given date > */ > public static Date randomDateAfter( Date date ); > /* > * A Random datetime before the given date > */ > public static Date randomDateBefore( Date date ); > /* > * Random datetime after this instant > */ > public static Date randomFutureDate(); > /* > * Random datetime before this instant > */ > public static Date randomPastDate(); > /* > * Random date (zeroed out time) after Janurary 1st, 1970 > */ > public static Date randomSimpleDate(); > /* > * A Random date (zeroed out time) after the given date > */ > public static Date randomSimpleDateAfter( Date date ); > /* > * A Random date (zeroed out time) before the given date > */ > public static Date randomSimpleDateBefore( Date date ); > /* > * Random date (zeroed out time) after this instant > */ > public static Date randomSimpleFutureDate(); > /* > * Random date (zeroed out time) before this instant > */ > public static Date randomSimplePastDate(); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.