I'd like to create an (immutable) Multiset in Guava that has a single entry element with occurrences occurrences, both of which are not known at compile time.
What I've come up with is this:
ImmutableMultiset.<X>builder().addCopies(element, occurrences).build()
I guess I was looking for a method like this:
public static ImmutableMultiset<X> ImmutableMultiset.nOccurrencesOf(
X element, int occurrences){}
or:
public static ImmutableMultiset<X> Multisets.singletonMultiset(
X element, int occurrences){}
Is there any method I have overlooked that makes the above code shorter?
addmethod in the class is just there to satisfy the interface and throws an exception. – John B Jun 5 '12 at 10:32