| Changed Classes |
|
Charsets
|
Contains constant definitions for the six standard Charset instances, which are
guaranteed to be supported by all Java platform implementations. |
|
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");
}
|
|
MoreObjects.ToStringHelper
|
Support class for MoreObjects.toStringHelper. |
|
Optional
|
An immutable object that may contain a non-null reference to another object. |
|
Splitter
|
Extracts non-overlapping substrings from an input string, typically by recognizing appearances of
a separator sequence. |
|
Stopwatch
|
An object that accurately measures elapsed time: the measured duration between two
successive readings of "now" in the same process. |