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

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

package com.dream.template.wrap;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy