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

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

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

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

/**
 * From Boolean to Float converter
 *
 * @author Alexey Mitrov
 */
public class FromBooleanToFloatConverter implements Converter {

    public Float convert(Boolean input) {
        return input == null ? null : (input ? Float.valueOf(1f) : Float.valueOf(0f));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy