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

com.grosner.dbflow.converter.BooleanConverter Maven / Gradle / Ivy

package com.grosner.dbflow.converter;

/**
 * Author: andrewgrosner
 * Contributors: { }
 * Description:
 */
public class BooleanConverter extends TypeConverter {
    @Override
    public Integer getDBValue(Boolean model) {
        return model == null ? 0 : model? 1 : 0;
    }

    @Override
    public Boolean getModelValue(Integer data) {
        return data == 1;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy