Google Guava - studiofu/brain GitHub Wiki

Google Guava

The Guava project contains several of Google's core libraries that we rely on in our Java-based projects: collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O, and so forth. Each of these tools really do get used every day by Googlers, in production services.

But trawling through Javadoc isn't always the most effective way to learn how to make best use of a library. Here, we try to provide readable and pleasant explanations of some of the most popular and most powerful features of Guava.

Resources

https://github.com/google/guava

https://github.com/google/guava/wiki

POM

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

Gradle

dependencies {
  compile 'com.google.guava:guava:27.0.1-jre'
}
⚠️ **GitHub.com Fallback** ⚠️