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

com.dream.template.wrap.ZeroWrapper Maven / Gradle / Ivy

package com.dream.template.wrap;

public class ZeroWrapper implements Wrapper {
    @Override
    public Object wrap(Object value) {
        if (value == null) {
            return 0;
        } else {
            return value;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy