Top "Guava" questions

Google's Core Java Library for Java and Android development.

Concatenate string values with delimiter handling null and empty strings?

In Java 8 I have some number of String values and I want to end up with a comma delimited list …

java java-8 guava apache-stringutils
How do I add Guava to my Android Studio project?

First and foremost, I am aware of the existence of this question - How do I add a library project …

android gradle android-studio guava android-gradle-plugin
What's the point of Guava checkNotNull

I'm pretty new to Guava (let's be honest, I'm not "pretty new", I'm a complete rookie on that subject) and …

java null guava preconditions
Is there a way to find common elements in multiple lists?

I have a list of integer arrays. I need to find the common elements between those. What I can think …

java arrays collections guava colt
Gradle: Override transitive dependency by version classifier

One of the dependencies declared in my project has a transitive dependency on 'com.google.guava:guava:15.0'. But my …

java maven gradle guava dependency-management
Is there an enum with MIME Types in Java?

Possible Duplicate: Interface/enum listing standard mime-type constants Is there an enum (or something similar) which holds constants for the …

java mime apache-commons guava
Java Map Values to Comma Separated String

Is there an effective way to convert java map values to comma separated string using guava or StringUtils? Map<…

java csv map guava string-utils
Populating a List with a contiguous range of integers

I'd like to have a list which contains the integers in the range 1 to 500. Is there some way to create …

java guava
Maven for Eclipse 1.5.0 plugin cannot be installed under Kepler

I downloaded Eclipse Kepler and tried to install M2Eclipse from its update site. After selecting Maven Integration for Eclipse, …

eclipse maven guava m2e
Is there an elegant way to remove nulls while transforming a Collection using Guava?

I have a question about simplifying some Collection handling code, when using Google Collections (update: Guava). I've got a bunch …

java collections refactoring guava