Java Timestamp max(Timestamp ts1, Timestamp ts2)

Here you can find the source of max(Timestamp ts1, Timestamp ts2)

Description

Max date

License

Open Source License

Parameter

Parameter Description
ts1 p1
ts2 p2

Return

max time

Declaration

public static Timestamp max(Timestamp ts1, Timestamp ts2) 

Method Source Code

//package com.java2s;
/******************************************************************************
 * The contents of this file are subject to the   Compiere License  Version 1.1
 * ("License"); You may not use this file except in compliance with the License
 * You may obtain a copy of the License at http://www.compiere.org/license.html
 * Software distributed under the License is distributed on an  "AS IS"  basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
 * the specific language governing rights and limitations under the License.
 * The Original Code is Compiere ERP & CRM Smart Business Solution. The Initial
 * Developer of the Original Code is Jorg Janke. Portions created by Jorg Janke
 * are Copyright (C) 1999-2005 Jorg Janke.
 * All parts are Copyright (C) 1999-2005 ComPiere, Inc.  All Rights Reserved.
 * Contributor(s): ______________________________________.
 *****************************************************************************/

import java.sql.Timestamp;

public class Main {
    /**/*from   w w  w. ja v  a 2 s  . c  o m*/
     *    Max date
     *   @param ts1 p1
     *   @param ts2 p2
     *   @return max time
     */
    public static Timestamp max(Timestamp ts1, Timestamp ts2) {
        if (ts1 == null)
            return ts2;
        if (ts2 == null)
            return ts1;

        if (ts2.after(ts1))
            return ts2;
        return ts1;
    }
}

Related

  1. isTimestamp(String aS_DateTime, String aS_Format)
  2. isTimestamp(String str)
  3. isValid(Timestamp validFrom, Timestamp validTo, Timestamp testDate)
  4. long2Timestamp(Long longValue)
  5. longFromTimestamp(Timestamp ts)
  6. maxTime(Timestamp dayTime)
  7. minusHours(Timestamp ts, int hours)
  8. minusOneSecond(Timestamp now)
  9. newDate(Timestamp time)