blob: 9e87b57605c6627c5c23f485f44eea155b03456d [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 2002-2003, 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);
}