Tagged Questions

Guava is the open-sourced version of Google's core Java libraries that aims to make working in the Java language more pleasant and more productive. It contains several core libraries that Google rely on in their Java-based projects: collections, caching, primitives support, concurrency libraries, ...

learn more… | top users | synonyms (1)

68
votes
4answers
9k views

Apache Commons vs. Google Collections

I was looking for a bidirectional map implementation in Java, and stumbled upon these two libraries: Apache Commons Collections Google Collections Both are free, have the bidirectional map ...
51
votes
11answers
1k views

Managing highly repetitive code and documentation in Java

Highly repetitive code is generally a bad thing, and there are design patterns that can help minimize this. However, sometimes it's simply inevitable due to the constraints of the language itself. ...
39
votes
1answer
7k views

is guava-libraries available in maven repo?

I am looking to find guava-libraries in maven repository. It looks like guava is adding more features to google-collections library.
37
votes
3answers
4k views

What are the big improvements between guava and apache equivalent libraries?

We currently use apache collections, string utils, etc. I need to decide if we should switch from the apache foundations implementation. The important criteria is ease of developers use. ...
37
votes
8answers
5k views

The Guava library for java; what are its most useful and/or hidden features

I have had a quick scan of the guava api and the new collection types it provides(multimap and bimap for example appear useful) and I am thinking of including the library in the project(s) I work on. ...
27
votes
6answers
3k views

Are there tutorials and resources explaining all components of guava-libraries?

I still precise that this request doesn't concern the google-collections part of the library which has a lot of resources: I'm speaking essentially about the services and the concurrency part. I ...
22
votes
4answers
701 views

Can I wrap text to a given width with Guava?

I would like to be able to wrap a long String to a fixed length. Is there a way to do that in Guava? Apache Commons / Lang has the method WordUtils.wrap(String, length) that does exactly what I need. ...
21
votes
6answers
1k views

Guava: Set<K> + Function<K,V> = Map<K,V>?

Is there an idiomatic way to take a Set<K> and a Function<K,V>, and get a Map<K,V> live view? (i.e. the Map is backed by the Set and Function combo, and if e.g. an element is added ...
19
votes
2answers
2k views

Is Google Guava “harder” to use than Apache Collections?

I'm thinking of asking my team, of mixed skill levels, to use Google Guava. Prior to Guava, I'd have used the Apache Collections (or its generified version). Guava, as opposed to Apache Collections, ...
18
votes
2answers
544 views

Filtering lists of generic types

Lists or Iterables can be filtered easily using guavas filter(Iterable<?> unfiltered, Class<T> type). This operation performs two tasks: the list is filtered and transformed into a ...
18
votes
2answers
560 views

Why does Guava's ImmutableList have so many overloaded of() methods?

I was just looking at Guava's ImmutableList and I noticed that the of() method was overloaded 12 times. It looks to me that all they needed was: static <E> ImmutableList<E> of(); static ...
17
votes
3answers
716 views

my ideal cache using guava

Off and on for the past few weeks I've been trying to find my ideal cache implementation using guava's MapMaker. See my previous two questions here and here to follow my thought process. Taking what ...
17
votes
11answers
3k views

How do I efficiently cache objects in Java using available RAM?

I need to cache objects in Java using a proportion of whatever RAM is available. I'm aware that others have asked this question, but none of the responses meet my requirements. My requirements are: ...
16
votes
6answers
408 views

List<Double> that uses RAM of double[]?

Java experts emphasize the importance of avoiding premature optimization, and focusing instead on clean OO design. I am trying to reconcile this principle in the context of rewriting a program that ...
16
votes
4answers
922 views

Google guava vs Scala collection framework comparison

There are a lot of common concepts: immutable collection, collection view, strict/non strict collection, collection builders same patterns in Guava and Scala Collection API. So what is the ...
16
votes
4answers
950 views

Is there an easy way to turn Future<Future<T>> into Future<T>?

I've got some code that submits a request to another thread which may or may not submit that request to yet another thread. That yields a return type of Future<Future<T>>. Is there some ...
15
votes
4answers
443 views

Java Generics Wildcards Question

I'm facing some problems with Generics when using Google Guava's excellent Multimap. I have a type Handler defined as such public interface Handler<T extends Serializable> { void handle(T ...
15
votes
5answers
2k views

Java time-based map with expiring keys

Do any of you know of a Java Map or similar standard data store that automatically purges entries after a given timeout? Preferably in an open source library that is accessible via maven? I know of ...
15
votes
5answers
2k views

Getting default value for java primitive types

I have a java primitive type at hand: Class c = int.class; // or long.class, or boolean.class I'd like to get a 'default value' for this class - specifically the value is assigned to fields of this ...
13
votes
7answers
555 views

reliably forcing Guava map eviction to take place

EDIT: I've reorganized this question to reflect the new information that since became available. This question is based on the responses to a question by Viliam concerning Guava Maps' use of lazy ...
13
votes
4answers
529 views

Filtering Guava Multimaps

Is there a a built-in method or combination of methods to return a filtered view of Guava ImmutableMultimaps using predicates, like you can with regular maps? There does not appear to be Maps.filter ...
13
votes
1answer
3k views

Guava: how to combine filter and transform?

I have a collection of Strings, and I would like to convert it to a collection of strings were all empty or null Strings are removed and all others are trimmed. I can do it in two steps: final ...
13
votes
4answers
8k views

filter and sort list using google collections

Suppose I have a list (or Set): List<String> testList = Lists.newArrayList("assocX","srcT","destA","srcX", "don't care Y", "garbage", "srcB"); I would like to get back an ImmutableList(Set) ...
13
votes
3answers
3k views

Guava libraries and GWT

Just discovered the Guava libraries project. Do these work with GWT?
12
votes
7answers
283 views

Java: “cons” an item to a list

I have an Item which has a method List<Item> getChildren() (which returns an immutable list) and for each of the items I have, I need to create a list of the item followed by its children. ...
12
votes
6answers
1k views

Idiomatic way to use for-each loop given an iterator?

When the enhanced for loop (foreach loop) was added to Java, it was made to work with a target of either an array or Iterable. for ( T item : /*T[] or Iterable<? extends T>*/ ) { //use item ...
12
votes
3answers
4k views

Guava r07, GWT and javax.annotation.Nullable

I'm trying to use Guava in a GWT project without success (a HashMultimap, to be precise). I get a never-ending list of stacktraces for classes: com.google.common.collect.ComparisonChain ...
12
votes
4answers
545 views

Computing map: computing value ahead of time

I have a computing map (with soft values) that I am using to cache the results of an expensive computation. Now I have a situation where I know that a particular key is likely to be looked up within ...
12
votes
5answers
1k views

What is the difference between google's ImmutableList and Collections.unmodifiableList ()?

From ImmutableList javadocs: Unlike Collections.unmodifiableList(java.util.List), which is a view of a separate collection that can still change, an instance of ImmutableList contains its ...
11
votes
2answers
155 views

Restartable Service using Guava

I'm currently developing an application where I need to manage the state of several services, and stopping/starting them based on some events. The problem is, as stated in the docs, Guava's Service is ...
11
votes
2answers
681 views

how to use the InputSupplier or OutputSupplier api of Guava?

I am new to the guava library, and I am quite confused with the InputSupplier and OutputSupplier. According to the javadoc, they are just factories for InputStream and OutputStream respectively. ...
11
votes
3answers
1k views

Combine multiple Collections into a single logical Collection?

Assume, I have a constant number of collections (e.g. 3 ArrayLists) as members of a class. Now, I want to expose all the elements to other classes so they can simply iterate over all elements ...
10
votes
4answers
2k views

Caching with Guava

What Guava classes are suitable for thread-safe caching? I use a composed key, which gets constructed on the fly, so softKeys() makes no sense, right? I saw somewhere ConcurentLinkedHashMap, is it the ...
10
votes
4answers
2k views

Guava equivalent for IOUtils.toString(InputStream)

Apache Commons IO has a nice convenience method IOUtils.toString() to read an InputStream to a String. Since I am trying to move away from Apache Commons and to Guava: is there an equivalent in ...
10
votes
4answers
379 views

What is the proper error message to supply to Google Guava's Preconditions.* methods?

For example when using Preconditions.checkArgument, is the error message supposed to reflect the passing case or the failing case of the check in question? import static ...
10
votes
2answers
611 views

Find top N elements in a Multiset from Google Collections?

A Google Collections Multiset is a set of elements each of which has a count (i.e. may be present multiple times). I can't tell you how many times I want to do the following Make a histogram ...
9
votes
2answers
184 views

Why there is no getFirst(iterable) method?

Iterables present two methods for getLast public static <T> T getLast(Iterable<T> iterable); public static <T> T getLast(Iterable<T> iterable, @Nullable T defaultValue); ...
9
votes
3answers
144 views

right way to incorporate superclass into a Guava Objects.hashcode() implementation?

Possibly a dumb question, but I don't want to screw this up. Let's say I have two Java classes, Class1 and Class2, where Class2 extends Class1. I want to override Object.hashcode() using Guava for ...
9
votes
8answers
303 views

Defining a set of ground-rules for high-perfomance data structures (java)

I generally use vectors/arraylists , hashmaps/treemaps, and other java collections interchangeably, with exception of the fact that there are sometimes functional API requirements (for example, I ...
9
votes
1answer
100 views

Cycles in chained exceptions

I'll first quickly motivate the question with my use case. My library needs to expose a Java exception classifier to a framework which it plugs in to. For example: enum Classification { FATAL, ...
9
votes
3answers
272 views

Inferring generic types of nested static generic functions

Is the Java compiler able to infer the type of a generic static function from its context as the argument to another generic static function? For example, I have a simple Pair class: public class ...
9
votes
1answer
481 views

Flattening an Iterable<Iterable<T>> in Guava

Is there a flatten method in Guava - or an easy way to convert an Iterable<Iterable<T>> to an Iterable<T>? What I have is a Multimap<K, V> [sourceMultimap] and I want to ...
9
votes
8answers
2k views

HashMap alternatives for memory-efficient data storage

I've currently got a spreadsheet type program that keeps its data in an ArrayList of HashMaps. You'll no doubt be shocked when I tell you that this hasn't proven ideal. The overhead seems to use 5x ...
9
votes
2answers
788 views

Generic Test harness for java.util.Map?

I have a custom implementation of the Map interface which does some fancy stuff, like lazy evaluation of functions. the implementation should appear immutable after construction from outside (e.g. no ...
8
votes
6answers
220 views

Map that could be iterated in the order of values

I need a Map that could be iterated in the decreasing order of its values. Does any of the standard libraries like Apache Commons or Guava provide this kind of map ?
8
votes
2answers
166 views

Is it safe to reinsert the entry from Guava RemovalListener?

I've got a Guava Cache (or rather, I am migrating from MapMaker to Cache) and the values represent long-running jobs. I'd like to add expireAfterAccess behavior to the cache, as it's the best way to ...
8
votes
2answers
370 views

How to put() values into Guava's Cache class?

I'm a little confused by CacheBuilder and Cache introduced in Guava 10. The documentation hints that it's possible to overwrite values but as far as I can tell, Cache does not contain any methods for ...
8
votes
4answers
354 views

Efficient hash code for multiset in Java

I have defined a subinterface of java.util.Collection that effectively is a multiset (aka bag). It may not contain null elements, although that's not crucial to my question. The equals contract ...
8
votes
2answers
190 views

Returning an ImmutableMap <File, File>

I have a method that returns a Map. I would initially return the HashMap that the method generated, but thought it would be better to return an ImmutableMap. Unfortunately, the following statement ...
8
votes
1answer
329 views

How do I use Throwables.propagateIfInstanceOf() from Google Guava?

The javadoc example try { someMethodThatCouldThrowAnything(); } catch (IKnowWhatToDoWithThisException e) { handle(e); } catch (Throwable t) { Throwables.propagateIfInstanceOf(t, ...

1 2 3 4 5 9