org.sql2o.converters.FloatConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anima Show documentation
Show all versions of anima Show documentation
Operate the database like a stream
package org.sql2o.converters;
/**
* Used by sql2o to convert a value from the database into a {@link Float}.
*/
public class FloatConverter extends NumberConverter {
public FloatConverter(boolean primitive) {
super(primitive);
}
@Override
protected Float convertNumberValue(Number val) {
return val.floatValue();
}
@Override
protected Float convertStringValue(String val) {
return Float.parseFloat(val);
}
@Override
protected String getTypeDescription() {
return Float.class.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy