All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.solovyev.common.utils.DateUtils Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2009-2010. Created by serso.
 *
 * For more information, please, contact [email protected].
 */

package org.solovyev.common.utils;

import org.joda.time.DateTime;
import org.joda.time.Days;

import java.util.Date;

/**
 * User: serso
 * Date: May 11, 2010
 * Time: 11:35:05 PM
 */
public class DateUtils {

	public static int deltaDays(Date l, Date r) {
		return Days.daysBetween(new DateTime(l), new DateTime(r)).getDays();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy