Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
114 views

Java Commons Collections removeAll

CollectionUtils::removeAll() Commons Collections 3.2.1 I must be going crazy, becuase it seems like this method is doing the inverse of what the docs state: Removes the elements in remove from ...
3
votes
3answers
113 views

How do I learn to use Java commons-collections?

Weird title, I know, let me explain. I am a developer most familiar with C# and Javascript. I am completely sunk into those semi-functional worlds to the point that most of my code is about ...
3
votes
2answers
374 views

Java: Commons-Collections generics: How to get custom transformer to work

Hi i am using commons collections generics 4.01. I have a dto object. Class PricingDto { private Double tax; private Double price; private Double tip; // getters and setters } i ...
3
votes
1answer
203 views

Is there a generic equivalent to ArrayIterator from Apache Commons Collections?

ArrayIterator is handy (although I don't need the reset functionality), but like the rest of the Commons Collections stuff, it doesn't use generics. I checked Google Collections, but I didn't see a ...
1
vote
1answer
206 views

Is there a viable generic alternative to apache.commons.collections.CollectionUtils?

Is there a viable generic version of org.apache.commons.collections.CollectionUtils? If not, why not? It seems like an obvious need. Or has the Java community just given up on functional coding ...
1
vote
1answer
392 views

How to use MultiKeyMap from Apache in Spring Framework

I have come across MultiKeyMap from Apache Commons and am interested in using it in Spring framework instead of using regular map as I have a need for double key map. Dpes anyone know how to use ...
1
vote
1answer
138 views

Unable to locate ListOrderedMap?

I have included all the 6 jars (beanutils, lang, logging, collections, ezmorph, json-lib). Its working fine in simple struts application. But in my struts application, although I have included all jar ...
1
vote
3answers
386 views

Java Composite List

I'm looking for a opensource library that has an implementation of a composite list. I need a list that reads its values from some other lists and can be constructed something like this:List list1 = ...
0
votes
1answer
561 views

Java - JSON Object and ListOrderedMap problem

I am trying to use the JSON-lib api in my code to convert a java object into a JSONObject. I have added all of the dependencies with the versions specified on the link below to my j2ee web module ...
0
votes
4answers
725 views

Java Random access Map

I'm looking for a opensource library that has an implementation of a random access list. I need a map that maintains its hash index but also indexes the values in insertion order like LinkedHashmap ...
0
votes
2answers
988 views

Using generics with jakarta commons collections Buffer

This code compiles fine in Java <= 1.4. Java 1.6 bitches and moans with the warning: "The method add(Object) belongs to the raw type Collection. References to generic type Collection should be ...