jackson-datatypes-collections icon indicating copy to clipboard operation
jackson-datatypes-collections copied to clipboard

Jackson project that contains various collection-oriented datatype libraries: Eclipse Collections, Guava, HPPC, PCollections

Results 15 jackson-datatypes-collections issues
Sort by recently updated
recently updated
newest added

As the main task for JSTEP-1 (https://github.com/FasterXML/jackson-future-ideas/wiki/JSTEP-1) we need to: Change Maven package group id from "com.fasterxml.jackson.core" to "tools.jackson.core" Change Java Package name from "com.fasterxml.jackson.core" to "tools.jackson.core" (and so on...

I'm trying to use content converter with Guava collections like so: ```java @JsonDeserialize(contentConverter = DoublingConverter.class) public ImmutableList ints; ``` However this does not seem to do anything despite Jackson having...

guava
need-test-case
2.13

I'm trying to serialize a Guava Cache, so nothing fancy. But this seems to either fail (using default guava version 21.0) with an InvalidDefinitionException or return `{}` (using guava 30.1.1-jre)....

guava

As in the topic, PCollections support in jackson is missing serializers for `TreePVector`, `MapPSet` and others. From the module class: ```java @Override public void setupModule(SetupContext context) { context.addDeserializers(new PCollectionsDeserializers()); }...

good first issue
pcollections

As of Guava 22.0 there are: * [`ImmutableDoubleArray`](https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/ImmutableDoubleArray.html) * [`ImmutableIntArray`](https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/ImmutableIntArray.html) * [`ImmutableLongArray`](https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/ImmutableLongArray.html) I'd be nice to add support for these types and I'm willing to help get this implemented. Before...

3.0

(moved from https://github.com/FasterXML/jackson-datatype-guava/issues/51 by @devinrsmith) Currently, multisets' serialization size is proportional to Multiset.size() as opposed to Multiset.entrySet().size(). For example, if I have do Multiset.setCount("my_key", 1000), "my_key" is repeated 1000 times...

guava
good first issue

Currently (2.7.5) `MultimapSerializer` does not make use of either `SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS` or `JsonFormat.Feature.WRITE_SORTED_MAP_ENTRIES`; it should.

guava
2.12
good first issue

So, we'd need: https://github.com/FasterXML/jackson-datatypes-collections/tree/master/eclipse-collections/README similar to, say https://github.com/FasterXML/jackson-datatypes-collections/tree/master/guava/README This could be a nice Hacktoberfest issue.

eclipsec
good first issue

https://hastebin.com/onunuworay.js Sometime, but not always, jackson crash my application, when he try save a Table, how can i fix it? P.S. Offtop, but i don't know where i can ask...

guava
need-test-case

It would be nice to support fastutil collection The previous discussion: https://markmail.org/message/anwbtpgbvwh4ox4v#query:+page:1+mid:xqwwbpgh2ul46nst+state:results I could do this by copy pasting https://github.com/FasterXML/jackson-datatypes-collections/tree/master/hppc and some parts from https://github.com/FasterXML/jackson-datatypes-collections/tree/master/eclipse-collections very literally, but maybe it's...