MCPcopy
hub / github.com/google/guava

github.com/google/guava @v33.6.0 sqlite

repository ↗ · DeepWiki ↗ · release v33.6.0 ↗
59,545 symbols 278,733 edges 3,223 files 12,326 documented · 21%
README

Guava: Google Core Libraries for Java

GitHub Release CI OpenSSF Best Practices

Guava is a set of core Java libraries from Google that includes new collection types (such as multimap and multiset), immutable collections, a graph library, and utilities for concurrency, I/O, hashing, primitives, strings, and more! It is widely used on most Java projects within Google, and widely used by many other companies as well.

Guava comes in two flavors:

  • The JRE flavor requires JDK 1.8 or higher.
  • If you need support for Android, use the Android flavor. You can find the Android Guava source in the [android directory].

Adding Guava to your build

Guava's Maven group ID is com.google.guava, and its artifact ID is guava. Guava provides two different "flavors": one for use on a (Java 8+) JRE and one for use on Android or by any library that wants to be compatible with Android. These flavors are specified in the Maven version field as either 33.6.0-jre or 33.6.0-android. For more about depending on Guava, see using Guava in your build.

To add a dependency on Guava using Maven, use the following:

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>33.6.0-jre</version>

  <version>33.6.0-android</version>
</dependency>

To add a dependency using Gradle:

dependencies {
  // Pick one:

  // 1. Use Guava in your implementation only:
  implementation("com.google.guava:guava:33.6.0-jre")

  // 2. Use Guava types in your public API:
  api("com.google.guava:guava:33.6.0-jre")

  // 3. Android - Use Guava in your implementation only:
  implementation("com.google.guava:guava:33.6.0-android")

  // 4. Android - Use Guava types in your public API:
  api("com.google.guava:guava:33.6.0-android")
}

For more information on when to use api and when to use implementation, consult the Gradle documentation on API and implementation separation.

Snapshots and Documentation

Snapshots of Guava built from the master branch are available through Maven using version 999.0.0-HEAD-jre-SNAPSHOT, or 999.0.0-HEAD-android-SNAPSHOT for the Android flavor.

Snapshot API Javadoc as well as Snapshot API Diffs are also available.

Another easy way to get to the Javadoc is to open guava.dev/api. You can also jump right to a specific class by appending the class name to guava.dev. For example, guava.dev/ImmutableList!

Learn about Guava

Links

IMPORTANT WARNINGS

  1. APIs marked with the @Beta annotation at the class or method level are subject to change. They can be modified in any way, or even removed, at any time. If your code is a library itself (i.e., it is used on the CLASSPATH of users outside your own control), you should not use beta APIs unless you repackage them. If your code is a library, we strongly recommend using the Guava Beta Checker to ensure that you do not use any @Beta APIs!

  2. APIs without @Beta will remain binary-compatible for the indefinite future. (Previously, we sometimes removed such APIs after a deprecation period. The last release to remove non-@Beta APIs was Guava 21.0.) Even @Deprecated APIs will remain (again, unless they are @Beta). We have no plans to start removing things again, but officially, we're leaving our options open in case of surprises (like, say, a serious security problem).

  3. Guava has one dependency that is needed for linkage at runtime: com.google.guava:failureaccess:1.0.3. It also has some annotation-only dependencies, which we discuss in more detail at that link.

  4. Serialized forms of ALL objects are subject to change unless noted otherwise. Do not persist these and assume they can be read by a future version of the library.

  5. Our classes are not designed to protect against a malicious caller. You should not use them for communication between trusted and untrusted code.

  6. For the mainline flavor, we test the libraries using OpenJDK 8, 11, and 17 on Linux, with some additional testing on newer JDKs and on Windows. Some features, especially in com.google.common.io, may not work correctly in non-Linux environments. For the Android flavor, our unit tests also run on API level 23 (Marshmallow).

Extension points exported contracts — how you extend this code

Weigher (Interface)
Calculates the weights of cache entries. @author Charles Fry @since 11.0 [8 implementers]
guava/src/com/google/common/cache/Weigher.java
SourceSinkFactory (Interface)
A test factory for byte or char sources or sinks. In addition to creating sources or sinks, the factory specifies what c [10 …
guava-tests/test/com/google/common/io/SourceSinkFactory.java
Weigher (Interface)
Calculates the weights of cache entries. @author Charles Fry @since 11.0 [8 implementers]
android/guava/src/com/google/common/cache/Weigher.java
SourceSinkFactory (Interface)
A test factory for byte or char sources or sinks. In addition to creating sources or sinks, the factory specifies what c [10 …
android/guava-tests/test/com/google/common/io/SourceSinkFactory.java
TestMapGenerator (Interface)
Creates maps, containing sample elements, to be tested. @author George van den Driessche [42 implementers]
android/guava-testlib/src/com/google/common/collect/testing/TestMapGenerator.java
TestMapGenerator (Interface)
Creates maps, containing sample elements, to be tested. @author George van den Driessche [42 implementers]
guava-testlib/src/com/google/common/collect/testing/TestMapGenerator.java
SortedMultiset (Interface)
GWT emulation of SortedMultiset, with elementSet reduced to returning a SortedSet for GWT compat [3 implementers]
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/SortedMultiset.java
SomeInterface (Interface)
(no doc)
guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

Core symbols most depended-on inside this repo

put
called by 4331
android/guava/src/com/google/common/cache/Cache.java
size
called by 2213
android/guava/src/com/google/common/cache/Cache.java
get
called by 2166
guava-testlib/src/com/google/common/collect/testing/TestIteratorGenerator.java
isEmpty
called by 1935
android/guava/src/com/google/common/collect/Table.java
add
called by 1907
guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java
contains
called by 1816
android/guava/src/com/google/common/collect/Table.java
get
called by 1768
android/guava/src/com/google/common/cache/Cache.java
remove
called by 1632
android/guava/src/com/google/common/collect/Table.java

Shape

Method 52,441
Class 6,266
Interface 448
Enum 390

Languages

Java100%

Modules by API surface

guava/src/com/google/common/cache/LocalCache.java453 symbols
android/guava/src/com/google/common/cache/LocalCache.java441 symbols
guava/src/com/google/common/collect/Maps.java440 symbols
android/guava/src/com/google/common/collect/Maps.java409 symbols
guava/src/com/google/common/collect/MapMakerInternalMap.java308 symbols
android/guava/src/com/google/common/collect/MapMakerInternalMap.java308 symbols
guava/src/com/google/common/collect/Synchronized.java293 symbols
guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java285 symbols
guava-tests/test/com/google/common/reflect/TypeTokenTest.java277 symbols
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java277 symbols
android/guava/src/com/google/common/collect/Synchronized.java276 symbols
guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java259 symbols

Dependencies from manifests, versioned

${project.groupId}:guava-testlib
com.google.caliper:caliper
com.google.code.findbugs:jsr305
com.google.errorprone:error_prone_annotations
com.google.guava:failureaccess
com.google.guava:guava-gwt
com.google.guava:guava-testlib
com.google.guava:guava-tests
com.google.guava:listenablefuture
com.google.j2objc:j2objc-annotations

For agents

$ claude mcp add guava \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact