Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can you instantiate a Bimap of Google-collections?

I know the thread.

A sample of my code

import com.google.common.collect.BiMap;

public class UserSettings {

 private Map<String, Integer> wordToWordID;

 UserSettings() {

  this.wordToWordID = new BiMap<String. Integer>();

I get cannot instantiate the type BiMap<String, Integer>.

share|improve this question

2 Answers

up vote 12 down vote accepted

As stated in the linked question, you are supposed to use the create() factory methods.

In your case, this means changing

this.wordToWordID = new BiMap<String. Integer>();

to

this.wordToWordID = HashBiMap.create(); 
share|improve this answer
Hmm. Your answer raises a new question. Why does EnumBimap not have the method create without parameters, like HashBiMap? – Masi Mar 12 '10 at 12:16
@Masi: That's a good question. I believe the reason is because EnumBimap needs to know what its parameters are, and because of type erasure it can't know unless you pass the Class objects to it at some point. The same is true of EnumMap and EnumSet in the standard library. – Michael Myers Mar 12 '10 at 14:07
So it is not enough for EnumMap to know the types only. It apparently makes some processing based on the content of the input data. – Masi Mar 12 '10 at 14:40
@Masi: Yes, if you look at the source you can see that EnumMap uses the Class object to figure out what all the possible values of the enum are (and for other things; you can see the OpenJDK source at openjdk.dev.java.net/source/browse/openjdk/jdk/trunk/jdk/src/…). EnumBimap requires the Class arguments simply because it uses two EnumMap instances (see the source here: code.google.com/p/google-collections/source/browse/trunk/src/…). – Michael Myers Mar 12 '10 at 15:46

BiMap is an interface, and as such cannot be instantiated. You need to instantiate a concrete subclass according to the properties you want, available subclasses (according to the javadoc) are EnumBiMap, EnumHashBiMap, HashBiMap, ImmutableBiMap.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.