MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / equalsIgnoreCase

Method equalsIgnoreCase

Ports/CLDC11/src/java/lang/String.java:174–176  ·  view source on GitHub ↗
(java.lang.String anotherString)

Source from the content-addressed store, hash-verified

172 /// Compares this String to another String, ignoring case considerations. Two strings are considered equal ignoring case if they are of the same length, and corresponding characters in the two strings are equal ignoring case.
173 /// Two characters c1 and c2 are considered the same, ignoring case if at least one of the following is true: The two characters are the same (as compared by the == operator). Applying the method Character.toUpperCase(char) to each character produces the same result. Applying the method Character.toLowerCase(char) to each character produces the same result.
174 public boolean equalsIgnoreCase(java.lang.String anotherString){
175 return false; //TODO codavaj!!
176 }
177
178 /// Convert this String into bytes according to the platform's default character encoding, storing the result into a new byte array.
179 public byte[] getBytes(){

Callers 15

readDayOfWeekMethod · 0.95
readMonthMethod · 0.95
setVariableMethod · 0.95
createImplementationMethod · 0.95
getHeaderFieldsMethod · 0.95
setVariableMethod · 0.95
onResumeMethod · 0.95
onPrepareOptionsMenuMethod · 0.95
doHandshakeMethod · 0.95
setVariableMethod · 0.95
createImplementationMethod · 0.95

Calls

no outgoing calls

Tested by 1

initMethod · 0.76