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

org.aksw.facete.v3.api.path.Join Maven / Gradle / Ivy

There is a newer version: 5.2.0-1
Show newest version
package org.aksw.facete.v3.api.path;

import java.util.List;

import org.aksw.jena_sparql_api.relationlet.VarRef;

public class Join {
	protected List lhs;
	protected List rhs;
	
	public Join(List lhs, List rhs) {
		super();
		this.lhs = lhs;
		this.rhs = rhs;
	}

	public List getLhs() {
		return lhs;
	}

	public List getRhs() {
		return rhs;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy