public class CaseInsensitiveOrder

  1. Object
  2. CaseInsensitiveOrder

ImplementsComparator<String>

A string comparator equivalent to String.CASE_INSENSITIVE_ORDER which isn’t available in Codename One

Constructors

public CaseInsensitiveOrder()

Methods

public int compare(String s1, String s2)Compares the two specified objects to determine their relative ordering.

Inherited methods

Constructor details

CaseInsensitiveOrder

public CaseInsensitiveOrder()

Method details

compare

public int compare(String s1, String s2)

Compares the two specified objects to determine their relative ordering. The ordering implied by the return value of this method for all possible pairs of (object1, object2) should form an equivalence relation. This means that

  • compare(a,a) returns zero for all a

  • the sign of compare(a,b) must be the opposite of the sign of compare(b,a) for all pairs of (a,b)

  • From compare(a,b) > 0 and compare(b,c) > 0 it must follow compare(a,c) > 0 for all possible combinations of (a,b,c)

Parameters

s1 String
an Object.
s2 String
a second Object to compare with object1.

Returns

an integer 0 if object1 is greater than object2.

Throws

ClassCastException
if objects are not of the correct type.