Interface JsonNumberFormatVisitor
-
- All Superinterfaces:
JsonValueFormatVisitor
- All Known Implementing Classes:
JsonNumberFormatVisitor.Base
public interface JsonNumberFormatVisitor extends JsonValueFormatVisitor
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
JsonNumberFormatVisitor.Base
Default "empty" implementation, useful as the base to start on; especially as it is guaranteed to implement all the method of the interface, even if new methods are getting added.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
numberType(JsonParser.NumberType type)
Method called to provide more exact type of number being serialized (regardless of logical type, which may beDate
orEnum
, in addition to actual numeric types likeInteger
).-
Methods inherited from interface com.fasterxml.jackson.databind.jsonFormatVisitors.JsonValueFormatVisitor
enumTypes, format
-
-
-
-
Method Detail
-
numberType
void numberType(JsonParser.NumberType type)
Method called to provide more exact type of number being serialized (regardless of logical type, which may beDate
orEnum
, in addition to actual numeric types likeInteger
).
-
-