Class AlphabeticalComparator

  • All Implemented Interfaces:
    java.io.Serializable, java.util.Comparator<org.restlet.data.Reference>
    Direct Known Subclasses:
    AlphaNumericComparator

    public class AlphabeticalComparator
    extends java.lang.Object
    implements java.util.Comparator<org.restlet.data.Reference>, java.io.Serializable
    Allows to sort the list of references set by the resource.
    Author:
    Jerome Louvel
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int compare​(java.lang.String str0, java.lang.String str1)
      Compares two strings.
      int compare​(org.restlet.data.Reference ref0, org.restlet.data.Reference ref1)
      Compares two references.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.Comparator

        equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
    • Constructor Detail

      • AlphabeticalComparator

        public AlphabeticalComparator()
    • Method Detail

      • compare

        public int compare​(org.restlet.data.Reference ref0,
                           org.restlet.data.Reference ref1)
        Compares two references.
        Specified by:
        compare in interface java.util.Comparator<org.restlet.data.Reference>
        Parameters:
        ref0 - The first reference.
        ref1 - The second reference.
        Returns:
        The comparison result.
        See Also:
        Comparator
      • compare

        public int compare​(java.lang.String str0,
                           java.lang.String str1)
        Compares two strings.
        Parameters:
        str0 - The first string.
        str1 - The second string.
        Returns:
        The comparison result.
        See Also:
        Comparator