I want to be able to do something with the totalNumber in the JSON before assigning it to the TotalNumber object. Is there a way to do that with Jackson?
public class Numbers
{
private TotalNumber totalNumber;
}
[{
"totalNumber": [1,2,3,4]
}]
I want to be able to do something with the totalNumber in the JSON before assigning it to the TotalNumber object. Is there a way to do that with Jackson?
public class Numbers
{
private TotalNumber totalNumber;
}
[{
"totalNumber": [1,2,3,4]
}]