Changed Methods |
int compareToIgnoreCase(String )
|
Documentation changed from old to new. |
Compares two strings lexicographically ignoring case considerations. |
boolean equalsIgnoreCase(String )
|
Documentation changed from old to new. |
Compares this String to another String ignoring case considerations. |
int compareTo(Object )
|
Documentation changed from old to new. |
Compares this String to another Object. |
byte[] getBytes(String )
|
Documentation changed from old to new. |
Convert this String into bytes according to the specified character encoding storing the result into a new byte array. |
String toLowerCase()
|
Documentation changed from old to new. |
Converts all of the characters in this String to lower case using the rules of the default locale which is returned by Locale.getDefault . |
String toLowerCase(Locale )
|
Documentation changed from old to new. |
Converts all of the characters in this String to lower case using the rules of the given Locale . |
String toUpperCase()
|
Documentation changed from old to new. |
Converts all of the characters in this String to upper case using the rules of the default locale which is returned by Locale.getDefault . |
String toUpperCase(Locale )
|
Documentation changed from old to new. |
Converts all of the characters in this String to upper case using the rules of the given locale. |