blob: ad413b253c3198a2f19a2c869280305bcfeadb3d [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
// ? 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
* Copyright (C) 2008-2009, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
*/
package android.icu.util;
/**
* This class represents date interval.
* It is a pair of long representing from date 1 to date 2.
*/
@SuppressWarnings({"unchecked", "deprecation", "all"})
public final class DateInterval implements java.io.Serializable {
/**
* 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) { throw new RuntimeException("Stub!"); }
/**
* Get the from date.
* @return the from date in dateInterval.
*/
public long getFromDate() { throw new RuntimeException("Stub!"); }
/**
* Get the to date.
* @return the to date in dateInterval.
*/
public long getToDate() { throw new RuntimeException("Stub!"); }
/**
* Override equals
*/
public boolean equals(java.lang.Object a) { throw new RuntimeException("Stub!"); }
/**
* Override hashcode
*/
public int hashCode() { throw new RuntimeException("Stub!"); }
/**
* Override toString
*/
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
}