Collator compare(Object, Object) method in Java with Example

The compare() method of java.text.Collator class is used to compare the strength of two objects and it will return 0, positive and negative value as an output according to the result .
Â
Syntax:Â Â
public int compare(Object o1, Object o2)
Parameter: This method takes two objects between which comparison is going to take place.
Return Value: if the first object is equals, greater or lesser than the other object then it will return zero, positive and negative value respectively.
Exception: This method throws ClassCastException if the arguments cannot be cast to Strings.
Below are the examples to illustrate the compare() method:
Example 1:Â Â
Java
// Java program to demonstrate// compare() methodÂ
import java.text.*;import java.util.*;import java.io.*;Â
public class GFG {Â Â Â Â public static void main(String[] argv)Â Â Â Â {Â Â Â Â Â Â Â Â try {Â
            // Creating and initializing Collator Object            Collator col = Collator.getInstance();Â
            // Creating an initializing            // object for comparison            Object obj1 = "ab";Â
            // Creating an initializing            // Object for comparison            Object obj2 = "Ab";Â
            // compare both object            // using compare() method            int i                = col.compare((String)obj1, (String)obj2);Â
            // display result            if (i < 0)                System.out.println("ab is less than Ab");            else if (i > 0)                System.out.println("ab is greater than Ab");            else                System.out.println("ab is equal to Ab");        }Â
        catch (ClassCastException e) {Â
            System.out.println("Exception thrown : " + e);        }    }} |
Output:Â
ab is less than Ab
Â
Example 2:Â
Java
// Java program to demonstrate// compare() methodÂ
import java.text.*;import java.util.*;import java.io.*;Â
public class GFG {Â Â Â Â public static void main(String[] argv)Â Â Â Â {Â Â Â Â Â Â Â Â try {Â
            // Creating and initializing Collator Object            Collator col = Collator.getInstance();Â
            // Creating an initializing object for comparison            Object obj1 = "ab";Â
            // Creating an initializing Object for comparison            Object obj2 = 1234;Â
            // compare both object            // using compare() method            int i = col.compare((String)obj1, (String)obj2);Â
            // display result            if (i < 0)                System.out.println("ab is less than Ab");            else if (i > 0)                System.out.println("ab is greater than Ab");            else                System.out.println("ab is equal to Ab");        }Â
        catch (ClassCastException e) {Â
            System.out.println("Exception thrown : " + e);        }    }} |
Output:Â
Exception thrown : java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
Â



