v23.2
版本发布时间: 2017-10-12 07:30:53
google/guava最新发布版本:v33.3.1(2024-09-24 04:55:13)
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.2-jre</version>
<!-- or, for Android: -->
<version>23.2-android</version>
</dependency>
Javadoc
JDiff
Changelog
- Added JPMS module name
com.google.common
for Guava. -
base
: Deprecated built-inCharMatcher
s which cannot work as expected because the API does not support supplementary code points. -
collect
: Fixed https://github.com/google/guava/issues/2962 -
collect
: Fixed a bug inHashBiMap.inverse().forcePut()
-
graph
: Added implementation forcommon.graph.Traverser
, a new class that provides efficient breadth-first and depth-first traversal of graphs and trees. It should be used in place ofcommon.collect.TreeTraverser
, which will be deprecated. -
graph
: Fixed regression inValueGraph.edgeValueOrDefault()
(from Guava 23) that caused it sometimes to returnnull
instead of the default value.