JsonIntegerFormatVisitor v2 = visitor.expectIntegerFormat(typeHint);
if (v2 != null) {
v2.numberType(JsonParser.NumberType.BIG_INTEGER);
}
} else {
JsonNumberFormatVisitor v2 = visitor.expectNumberFormat(typeHint);
if (v2 != null) {
Class<?> h = handledType();
if (h == BigDecimal.class) {
v2.numberType(JsonParser.NumberType.BIG_DECIMAL);
} // otherwise it's for Number... anything we could do there?
}
}
}