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

us.bpsm.edn.parser.InstantToTimestamp Maven / Gradle / Ivy

// (c) 2012 B Smith-Mannschott -- Distributed under the Eclipse Public License
package us.bpsm.edn.parser;

/**
 * A Handler for {@code #inst} which translates the instant into a
 * {@link java.sql.Timestamp}.
 */
public class InstantToTimestamp extends AbstractInstantHandler {

    @Override
    protected Object transform(ParsedInstant pi) {
        return InstantUtils.makeTimestamp(pi);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy