Class LocalDateTimeDeserializer
java.lang.Object
cz.cvut.kbss.jsonld.deserialization.datetime.LocalDateTimeDeserializer
- All Implemented Interfaces:
- Configurable,- ValueDeserializer<LocalDateTime>
Deserializes values to 
LocalDateTime.- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidconfigure(Configuration config) Applies the specified configuration to this deserializer.deserialize(jakarta.json.JsonValue jsonNode, DeserializationContext<LocalDateTime> ctx) Deserializes the specified JSON-LD node.
- 
Constructor Details- 
LocalDateTimeDeserializer
 
- 
- 
Method Details- 
deserializepublic LocalDateTime deserialize(jakarta.json.JsonValue jsonNode, DeserializationContext<LocalDateTime> ctx) Description copied from interface:ValueDeserializerDeserializes the specified JSON-LD node.- Specified by:
- deserializein interface- ValueDeserializer<LocalDateTime>
- Parameters:
- jsonNode- JSON-LD node to deserialize
- ctx- Deserialization context
- Returns:
- Deserialized object
 
- 
configureDescription copied from interface:ValueDeserializerApplies the specified configuration to this deserializer.Should be called at the beginning of deserialization of JSON-LD content so that potential runtime changes in configuration can be reflected by the deserialization process. Implementations are free to apply configuration on initialization and rely on the default implementation of this method which does nothing. - Specified by:
- configurein interface- Configurable
- Specified by:
- configurein interface- ValueDeserializer<LocalDateTime>
- Parameters:
- config- Configuration to apply
 
 
-