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

org.sql2o.converters.DoubleConverter Maven / Gradle / Ivy

There is a newer version: 0.2.6
Show newest version
package org.sql2o.converters;

/**
 * Used by sql2o to convert a value from the database into a  {@link Double}.
 */
public class DoubleConverter extends NumberConverter {

    public DoubleConverter(boolean primitive) {
        super(primitive);
    }

    @Override
    protected Double convertNumberValue(Number val) {
        return  val.doubleValue();
    }

    @Override
    protected Double convertStringValue(String val) {
        return Double.parseDouble(val);
    }

    @Override
    protected String getTypeDescription() {
        return Double.class.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy