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

org.onetwo.common.convert.ToDoubleConvertor Maven / Gradle / Ivy

There is a newer version: 4.7.2
Show newest version
package org.onetwo.common.convert;

public class ToDoubleConvertor extends AbstractTypeConvert {

	public ToDoubleConvertor() {
		super(0.0);
	}

	@Override
	public Double doConvert(Object value, Class componentType) {
//		if (value == null)
//            return 0.0;
        Class c = value.getClass();
        if (c.getSuperclass() == Number.class)
            return ((Number) value).doubleValue();
        if (c == Boolean.class)
            return ((Boolean) value).booleanValue() ? 1.0 : 0.0;
        if (c == Character.class)
            return (double)((Character) value).charValue();
        return Double.parseDouble(value.toString().trim());

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy