Commons-Collections builds upon the Java collection classes by providing new interfaces, implementations and utilities.
I am using TreeBidiMap from the Apache Collections library. I want to sort this on the values which are doubles. …
java list sorting collections apache-commons-collectionWhile hunting through some code I came across the arrow operator, what exactly does it do? I thought Java did …
java intellij-idea apache-commons java-8 apache-commons-collectionI have a List<Object> and I want to return the first value that it finds true which …
java collections apache-commons apache-commons-collectioni am trying to use apache commons collections and predicate as follows: List<Cat> bigList = ....; // master list Collection&…
java apache-commons apache-commons-collectionGiven below an example of org.apache.commons.collections.map.MultiValueMap (from commons-collections-3.2.1) Map<String, Object> multiValueMap = MultiValueMap.…
java apache-commons-collectionIs there a one-liner (maybe from Guava or Apache Collections) that gets a sublist from a set. Internally it should …
java guava apache-commons-collectionWhat's the best way to do null-safe contains on a Java collection? in other words - if (collection != null &&…
java collections apache-commons-collectionApache Commons' MultiMap interface with its MultiValueMap implementation is deprecated since version 4.1. And MultiHashMap seems to go entirely... What should …
java collections deprecated apache-commons-collectionCollectionUtils::removeAll() Commons Collections 3.2.1 I must be going crazy, becuase it seems like this method is doing the inverse of …
java collections apache-commons-collectionI'm using the MultiKeyMap from the commons-collections which provide multikey-value pairs. I have 3 keys which are Strings. I have two …
java dictionary apache-commons-collection multikey