We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fff59f commit 528d2fbCopy full SHA for 528d2fb
src/test/java/com/fasterxml/jackson/databind/deser/jdk/JDKScalarsTest.java
@@ -94,6 +94,9 @@ static class PrimitivesBean
94
public long longValue = 100L;
95
public float floatValue = 0.25f;
96
public double doubleValue = -1.0;
97
+
98
+ public void setLongValue(long l) { longValue = l; }
99
+ public void setDoubleValue(double v) { doubleValue = v; }
100
}
101
102
static class WrappersBean
@@ -106,6 +109,9 @@ static class WrappersBean
106
109
public Long longValue;
107
110
public Float floatValue;
108
111
public Double doubleValue;
112
113
+ public void setIntValue(Integer v) { intValue = v; }
114
+ public void setDoubleValue(Double v) { doubleValue = v; }
115
116
117
// [databind#2101]
0 commit comments