blob: 9ef708dc43ad6cdea9afcd5e022930c33149a977 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 2002-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.dev.tool.localeconverter;
public interface Comparable {
/**
returns 0 if objects are equal, -1 if a is less than b, 1 otherwise.
*/
public int compareTo(Object b);
}