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

us.bpsm.edn.parser.InstantToCalendar 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 intant into a
 * {@link java.util.Calendar}.
 */
public class InstantToCalendar extends AbstractInstantHandler {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy