blob: 562d962968820d92fa66ad9d0c1cc3afb4cf3e61 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
/*
*******************************************************************************
* Copyright (C) 2008-2009, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
*/
package android.icu.util;
import java.io.Serializable;
/**
* This class represents date interval.
* It is a pair of long representing from date 1 to date 2.
*/
public final class DateInterval implements Serializable {
private static final long serialVersionUID = 1;
private final long fromDate;
private final long toDate;
/**
* Constructor given from date and to date.
* @param from The from date in date interval.
* @param to The to date in date interval.
*/
public DateInterval(long from, long to)
{
fromDate = from;
toDate = to;
}
/**
* Get the from date.
* @return the from date in dateInterval.
*/
public long getFromDate()
{
return fromDate;
}
/**
* Get the to date.
* @return the to date in dateInterval.
*/
public long getToDate()
{
return toDate;
}
/**
* Override equals
*/
public boolean equals(Object a) {
if ( a instanceof DateInterval ) {
DateInterval di = (DateInterval)a;
return fromDate == di.fromDate && toDate == di.toDate;
}
return false;
}
/**
* Override hashcode
*/
public int hashCode() {
return (int)(fromDate + toDate);
}
/**
* Override toString
*/
public String toString() {
return String.valueOf(fromDate) + " " + String.valueOf(toDate);
}
} // end class DateInterval