Generated by
JDiff

Class java.lang.String

Documentation changed from old to new.

Changed Constructors
String(byte[], int, int, String) Documentation changed from old to new.
Construct a new String by converting the specified subarray of bytes using the specified character encoding.
String(byte[], String) Documentation changed from old to new.
Construct a new String by converting the specified array of bytes using the specified character encoding.
 

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.
 

Changed Fields
Comparator CASE_INSENSITIVE_ORDER Documentation changed from old to new.
Returns a Comparator that orders String objects as by compareToIgnoreCase.