-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathxstream-settings.txt
More file actions
24 lines (24 loc) · 889 Bytes
/
xstream-settings.txt
File metadata and controls
24 lines (24 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
renderInsignificantZeroDecimals : true,
nullStringProperty : "empty-string", /* null, skip */
dateStrategy : "iso", /* runtime timezone */
nullMapValue : "empty-map", /* skip */
failOnInvalidRoot : true,
skipEmptyCollections : false,
cycleStrategy : "ref-relative",
escapeForwardSlashes : false,
skipZeroes : false,
maxDecimalPlaces : 5, /* but 6 when round should be down */
roundDecimalsTo : "strange-jackson", /* ceil, floor, nearest...round down seems odd, .3333333 gets .333336 (6 spots and .6 somehow) not .33333 (5 spots like round up gets) */
calendarStrategy : "bean", /* time( as timestamp)/timezone only */
skipFalse : false,
escapeNonAsciiRange : false,
skipEmptyMaps : false,
skipEmptyStrings : false,
requirePublicClass : false,
nullCollectionEntry : "empty-map",
nullStrategy : "empty-map"
}
/*
Seems to treat maps as lists of k,v pairs sometimes
*/