Google's Core Java Library for Java and Android development.
Google Guava has CacheBuilder that allows to create ConcurrentHash with expiring keys that allow to remove entries after the fixed …
java guavaJust discovered the Guava libraries project. Do these work with GWT?
java gwt guavaI have a list of objects that I need to transform to a map where the keys are a function …
java collections guava lambdajI need combination of Google Collection ImmutableMap and LinkedHashMap — immutable map with defined iteration order. It seems that ImmutableMap itself …
java iteration guavaLike the title says, i would like to get a thread-safe HashSet using Guava Collections. Are any available?
java collections hashset guavaIs there a one-liner (maybe from Guava or Apache Collections) that gets a sublist from a set. Internally it should …
java guava apache-commons-collectionI try to make a cache using MapMaker/CacheBuilder but I don't understand how to properly handle null values. ConcurrentMap&…
java guavaI'm trying to rate-limit the the number of accounts a user can create with my REST API. I would have …
java guava rate-limitingWhat I'm looking for is a generic version of Object[] java.util.Collection.toArray() or a less verbose alternative to …
java guava apache-commonsI am using Guava's LoadingCache into my project to handle thread-{safe,friendly} cache loading and it works wonderfully well. …
java multithreading guava