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

net.sf.andromedaioc.bean.converter.fromboolean.FromBooleanToDoubleConverter Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.bean.converter.fromboolean;

import net.sf.andromedaioc.bean.converter.Converter;

/**
 * From Boolean to Double converter
 *
 * @author Alexey Mitrov
 */
public class FromBooleanToDoubleConverter implements Converter {

    public Double convert(Boolean input) {
        return input == null ? null : (input ? Double.valueOf(1.0) : Double.valueOf(0.0));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy