|
|
@ -101,8 +101,8 @@ public class JacksonJsonNodeJsonProvider extends AbstractJsonProvider { |
|
|
|
return e.asInt(); |
|
|
|
return e.asInt(); |
|
|
|
} else if (e.isLong()) { |
|
|
|
} else if (e.isLong()) { |
|
|
|
return e.asLong(); |
|
|
|
return e.asLong(); |
|
|
|
} else if (e.isBigDecimal()) { |
|
|
|
} else if (e.isBigInteger()) { |
|
|
|
return e.decimalValue(); |
|
|
|
return e.bigIntegerValue(); |
|
|
|
} else if (e.isDouble()) { |
|
|
|
} else if (e.isDouble()) { |
|
|
|
return e.doubleValue(); |
|
|
|
return e.doubleValue(); |
|
|
|
} else if (e.isFloat()) { |
|
|
|
} else if (e.isFloat()) { |
|
|
|