Antoine
Antoine

Reputation: 4734

Are there any guava overviews?

Guava libraries are powerful, but I’m not sure what all the possibilities of this library are.

I’ve found interesting tutorials like http://scaramoche.blogspot.com/search/label/guava

But are there any overviews of everything the library can do?

Upvotes: 8

Views: 904

Answers (4)

David
David

Reputation: 3261

Guava has added a new resource: Guava Explained: https://github.com/google/guava/wiki

Upvotes: 12

philipjkim
philipjkim

Reputation: 4139

I uploaded simple unit tests using Guava to github. Most of them are from Guava Explained. But some tests are solutions to problems in my workplace. Adding/modifying tests to the repo is always welcomed.

https://github.com/philipjkim/guava-example

Upvotes: 1

Tomasz Dziurko
Tomasz Dziurko

Reputation: 1688

It's worth to also check this one: http://tomaszdziurko.pl/2012/02/google-guava/

Upvotes: 2

nos
nos

Reputation: 229088

The API documentation is your best bet, along with the PDF slides linked at the guava homepage.

Upvotes: 4

Related Questions