Open
Description
As of Guava 22.0 there are:
I'd be nice to add support for these types and I'm willing to help get this implemented. Before I start working on a proper PR however, I have a few questions:
jackson-datatype-guava
2.9.2 targets Guava 18.0. Is it okay to bump this dependency to version 22.0?jackson-datatype-guava
2.9.2 targets Java 7. However, the JRE version of Guava 22.0 requires Java 8. As a work-around Guava 22.0-android can be targeted instead. Is that acceptable?- I have a local prototype which extends
PrimitiveArrayDeserializers
and delegates toPrimitiveArrayDeserializers.IntDeser
(i.e.PrimitiveArrayDeserializers.forType(Integer.TYPE)
. The thinking here is that the deserializer then has feature parity withint[]
support (Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY
etc.). But due to package-visibility ofIntDeser
this is pretty clunky. Any advice?