Skip to main content
Filter by
Sorted by
Tagged with
3 votes
1 answer
141 views

I wonder if there is a suitable data structure that has the following three characteristics: The collection can be modified by multiple threads Has unique elements in the collection The collection ...
pixel's user avatar
  • 27k
1 vote
0 answers
167 views

I'm trying to build Eclipse collection framework locally but after cloning git repo and running mvn install -DskipTests=true I'm getting java.util.ConcurrentModificationException exception when maven ...
Saurabh-Daware's user avatar
2 votes
1 answer
404 views

I have read Map vs. Multimap with great interest. Multimaps are indeed a commonly used concept for which there's no standard JDK type. As I am still exploring the Eclipse Collections library, I do ...
Erwin Dupont's user avatar
4 votes
2 answers
480 views

So I need help in using java eclipse collections as part of the response using the spring boot Response Entity JSON . I have tried using the generic way but I get a response exception error that it ...
kinsley kajiva's user avatar
3 votes
1 answer
155 views

Primitive maps don't seem to implement java.util.Map. If I have a function, accepting JDK Map as an argument and now want to pass eclipse collection implementation, for example ByteObjectHashMap, what'...
user avatar
1 vote
1 answer
307 views

I came across this library eclipse-collections and it fits my use case. But unfortunately, I am not able to deserialize it using either Gson or Jackson - the two most popular libraries for ...
paradocslover's user avatar
1 vote
1 answer
180 views

How to prepend (ideally O(1)) to an immutable List (of Eclipse Collections)
caeus's user avatar
  • 3,834
2 votes
2 answers
217 views

I can't seem to find a containsAny() method for SetIterable types in Eclipse Collections. Is there one? MutableSet<String> set1 = Sets.mutable.of("a", "b", "c"); ...
Luke's user avatar
  • 2,181
2 votes
2 answers
438 views

I have found Eclipse Collections very useful. Especially collections for primitive types (for example: IntObjectHashMap). Unfortunately there is a problem with rendering these collections in IntelliJ ...
adaslaw's user avatar
  • 308
1 vote
1 answer
976 views

Is there a way to use simple Java for-each loop over Eclipse Collections maps? I am looking for something like this (but for Eclipse Collections maps): for (Map.Entry<Integer, String> entry : ...
adaslaw's user avatar
  • 308
2 votes
1 answer
252 views

I am currently looking at consolidating to a single collections library in a project I'm involved in, and though I have little experience with it, I really like the look of Eclipse Collections. One ...
Jeen Broekstra's user avatar
2 votes
1 answer
608 views

I'm looking for resources to understand how Java datatypes are implemented internally, and how libraries like Fastutil and Eclipse Collections provide faster implementations of the same. I tired ...
shikharraje's user avatar
6 votes
1 answer
527 views

is it possible integration eclipse collections with spring data jpa + hibernate? for example: import org.springframework.data.jpa.repository.JpaRepository; import org.eclipse.collections.api.list....
Felix Ricardo Gilioli's user avatar
8 votes
2 answers
438 views

I have an Eclipse Collections IntList. How can I Create a Java IntStream from this list Create a Java Stream<Integer> from this list without copying the elements?
Jochen's user avatar
  • 7,571
1 vote
1 answer
101 views

I know about CharBag bag = CharAdapter.adapt("hello world!").toBag();it's nice, but it's not linked. I need bag with linked input string and how can i get keys and values from this collection to make ...
Deepstack's user avatar
  • 106

15 30 50 per page