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

be.ugent.rml.ValuedJoinCondition Maven / Gradle / Ivy

package be.ugent.rml;

import java.util.List;

public class ValuedJoinCondition {

    private Template path;
    private List values;

    public ValuedJoinCondition(Template path, List values) {
        this.path = path;
        this.values = values;
    }

    public Template getPath() {
        return path;
    }

    public List getValues() {
        return values;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy