protected abstract static class DateDeserializers.DateBasedDeserializer<T> extends StdScalarDeserializer<T> implements ContextualDeserializer
JsonDeserializer.None
Modifier and Type | Field and Description |
---|---|
protected DateFormat |
_customFormat
Specific format to use, if non-null; if null will
just use default format.
|
protected String |
_formatString
Let's also keep format String for reference, to use for error messages
|
_valueClass
Modifier | Constructor and Description |
---|---|
protected |
DateDeserializers.DateBasedDeserializer(Class<?> clz) |
protected |
DateDeserializers.DateBasedDeserializer(DateDeserializers.DateBasedDeserializer<T> base,
DateFormat format,
String formatStr) |
Modifier and Type | Method and Description |
---|---|
protected Date |
_parseDate(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt) |
JsonDeserializer<?> |
createContextual(DeserializationContext ctxt,
BeanProperty property)
Method called to see if a different (or differently configured) deserializer
is needed to deserialize values of specified property.
|
protected abstract DateDeserializers.DateBasedDeserializer<T> |
withDateFormat(DateFormat df,
String formatStr) |
deserializeWithType
_deserializeFromEmpty, _hasTextualNull, _isNaN, _isNegInf, _isPosInf, _parseBoolean, _parseBooleanFromNumber, _parseBooleanPrimitive, _parseByte, _parseDouble, _parseDoublePrimitive, _parseFloat, _parseFloatPrimitive, _parseInteger, _parseIntPrimitive, _parseLong, _parseLongPrimitive, _parseShort, _parseShortPrimitive, _parseString, findConvertingContentDeserializer, findDeserializer, getValueClass, getValueType, handledType, handleUnknownProperty, isDefaultDeserializer, isDefaultKeyDeserializer, parseDouble
deserialize, deserialize, findBackReference, getDelegatee, getEmptyValue, getKnownPropertyNames, getNullValue, getObjectIdReader, isCachable, replaceDelegatee, unwrappingDeserializer
protected final DateFormat _customFormat
protected final String _formatString
protected DateDeserializers.DateBasedDeserializer(Class<?> clz)
protected DateDeserializers.DateBasedDeserializer(DateDeserializers.DateBasedDeserializer<T> base, DateFormat format, String formatStr)
protected abstract DateDeserializers.DateBasedDeserializer<T> withDateFormat(DateFormat df, String formatStr)
public JsonDeserializer<?> createContextual(DeserializationContext ctxt, BeanProperty property) throws JsonMappingException
ContextualDeserializer
createContextual
in interface ContextualDeserializer
ctxt
- Deserialization context to access configuration, additional
deserializers that may be needed by this deserializerproperty
- Method, field or constructor parameter that represents the property
(and is used to assign deserialized value).
Should be available; but there may be cases where caller can not provide it and
null is passed instead (in which case impls usually pass 'this' deserializer as is)JsonMappingException
protected Date _parseDate(com.fasterxml.jackson.core.JsonParser jp, DeserializationContext ctxt) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
_parseDate
in class StdDeserializer<T>
IOException
com.fasterxml.jackson.core.JsonProcessingException
Copyright © 2014-2015 FasterXML. All Rights Reserved.