Google's Core Java Library for Java and Android development.
I have an immutable set (cast as a Set<Integer>) that potentially contains many elements. I need a …
java guavaI can create a Guava ImmutableList with the of method, and will get the correct generic type based on the …
java generics guava immutablelistI would like to collect some metrics from various places in a web app. To keep it simple, all these …
java multithreading concurrency guava concurrenthashmapI'm designing the backend for a new Java web app and am trying to decide whether or not to use …
java guava event-busI'm trying to decide which of these two to use in my project: guava cache or ehcache. Looking for a …
java benchmarking guava ehcacheI'm using the Google Guava library for tasks like sorting and filtering of a java.util.List<T> …
jakarta-ee glassfish guava glassfish-4.1I have TreeMap<String,String> which I need to convert to URI-like string and then back to Map. …
java map guava apache-commonsWhat is the most elegant way to put each line of text (from the text file) into LinkedList (as String …
java file text guava apache-commonsCan the following piece of code be rewritten w/o using Collections.synchronizedMap() yet maintaining correctness at concurrency? Collections.synchronizedMap(…
java collections guava java.util.concurrent weakhashmap