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

com.github.greengerong.Result Maven / Gradle / Ivy

package com.github.greengerong;

public class Result {

    private boolean exec;
    private Object defaultValue;

    public Result(boolean exec, Object defaultValue) {
        this.exec = exec;
        this.defaultValue = defaultValue;
    }

    public boolean isExec() {
        return exec;
    }

    public Object getDefaultValue() {
        return defaultValue;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy