Android Utililty Methods Char Compare

List of utility methods to do Char Compare

Description

The list of methods to do Char Compare are organized into topic(s).

Method

booleancompare(char firstChar, char secondChar)
compare
return ((firstChar == secondChar)
        || (isAlef(firstChar) && isAlef(secondChar))
        || (isHah(firstChar) && isHah(secondChar)) || (isYeh(firstChar) && isYeh(secondChar)));