| 83 | bool isCaseSensitive() const { return mCaseSensitive; } |
| 84 | |
| 85 | bool isEqual( const String &valA, const String &valB ) const |
| 86 | { |
| 87 | return valA.equal( valB, isCaseSensitive() ? String::Case : String::NoCase ); |
| 88 | } |
| 89 | |
| 90 | /// Searches the array for the first matching value from the |
| 91 | /// current array position. It will return -1 if no matching |