All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dominokit.jacksonapt.deser.map.key.JsDateKeyParser Maven / Gradle / Ivy

package org.dominokit.jacksonapt.deser.map.key;

import org.dominokit.jacksonapt.exception.JsonDeserializationException;
import org.gwtproject.i18n.shared.DateTimeFormat;

import java.util.Date;

import static org.gwtproject.i18n.shared.DateTimeFormat.PredefinedFormat;
import static org.gwtproject.i18n.shared.DateTimeFormat.getFormat;

/**
 * 

JsDateKeyParser class.

* * @author vegegoku * @version $Id: $Id */ public class JsDateKeyParser implements DateKeyParser { private static final DateTimeFormat ISO_8601_FORMAT = getFormat(PredefinedFormat.ISO_8601); private static final DateTimeFormat RFC_2822_FORMAT = getFormat(PredefinedFormat.RFC_2822); /** {@inheritDoc} */ @Override public D parse(String keyValue, DateDeserializer deserializer) { try { return deserializer.deserializeDate(ISO_8601_FORMAT.parse(keyValue)); } catch (IllegalArgumentException e) { // can happen if it's not the correct format } // maybe it's in milliseconds try { return deserializer.deserializeMillis(Long.parseLong(keyValue)); } catch (NumberFormatException e) { // can happen if the keyValue is string-based like an ISO-8601 format } // or in RFC-2822 try { return deserializer.deserializeDate(RFC_2822_FORMAT.parse(keyValue)); } catch (IllegalArgumentException e) { // can happen if it's not the correct format } throw new JsonDeserializationException("Cannot parse the keyValue '" + keyValue + "' as a date"); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy