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

org.aksw.jena_sparql_api.hop.HopRelation Maven / Gradle / Ivy

There is a newer version: 3.17.0-1
Show newest version
package org.aksw.jena_sparql_api.hop;

import java.util.List;

import org.aksw.jena_sparql_api.concepts.Relation;
import org.aksw.jena_sparql_api.core.QueryExecutionFactory;

public class HopRelation
    extends HopBase
{
    protected Relation relation;
    protected List hops;

    public HopRelation(QueryExecutionFactory qef) {
        super(qef);
    }

    public HopRelation(QueryExecutionFactory qef, Relation relation, List hops) {
        super(qef);
        this.relation = relation;
        this.hops = hops;
    }

    public Relation getRelation() {
        return relation;
    }

    public List getHops() {
        return hops;
    }

    @Override
    public String toString() {
        return "HopRelation [relation=" + relation + ", qef="
                + super.toString() + ", hops=" + hops + "]";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy