Generated by
JDiff

Package com.google.common.base

Added Classes
StandardSystemProperty Represents a System#getProperties() standard system property.
 

Changed Classes
Joiner An object which joins pieces of text (specified as an array, Iterable, varargs or even a Map) with a separator. It either appends the results to an Appendable or returns them as a String. Example:
   {@code

   Joiner joiner = Joiner.on("; ").skipNulls();
    . . .
   return joiner.join("Harry", null, "Ron", "Hermione");}
Joiner.MapJoiner An object that joins map entries in the same manner as {@code Joiner} joins iterables and arrays.
Splitter Extracts non-overlapping substrings from an input string, typically by recognizing appearances of a separator sequence.
Stopwatch An object that measures elapsed time in nanoseconds.