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

net.sf.andromedaioc.bean.converter.fromnumber.FromNumberToBooleanConverter Maven / Gradle / Ivy

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

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

/**
 * From Number to Boolean converter
 *
 * @author Alexey Mitrov
 */
public class FromNumberToBooleanConverter implements Converter {

    public Boolean convert(Number input) {
        return input == null ? false : input.intValue() > 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy