Tatu Saloranta

Results 3352 comments of Tatu Saloranta

Actually, looking into this bit more I realized that `WRITE_NUMBERS_AS_STRINGS` is moving to `JsonWriteFeature` (json-specific) and not into `StreamWriteFeature` (format-agnostic). Given this, I think I'd then prefer adding CSV-specific addition,...

@MrBuddyCasino I did not have time to implement this (it was one of top things I'd ideally wanted to have in 2.12 but didn't quite make it), so would be...

@achmadafriza yes, this is up for grabs. If you want to work on it, target would be `2.13` branch.

First things first: input linefeeds are not and will not be preserved by Jackson; that is not something that is not meant to be preserved, nor something I am interested...

There is no functionality currently for "embedded" arrays like this: only array item separator (defaults to `;`) can be specified. There is also no way to add quoting within array....

Hmmh. Unfortunately Maps and POJOs are internally handled rather differently. But I am all for unification if it is technically possible, so limitation is not philosophical, just practical. I suspect...

:-) One quick question: I assume most users would expect it to work both ways. But I suspect serialization is much easier to make work. Would you find any value...

Yes my concern is really with unexpected one-way street: unwrapping on way out, but not "wrapping it back" as Map on way back in.

Ok, I think supporting this would be very useful for CSV, f.ex see https://github.com/FasterXML/jackson-dataformat-csv/issues/25 so maybe I should go back, try to tackle this. Although, with CSV there are other...

A related note for anyone who happens upon this issue: one alternative is use of `@JsonAnyGetter`, which does allow functionality for a single `Map`.