org.eclipse.rdf4j.query.algebra.Join Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdf4j-queryalgebra-model Show documentation
Show all versions of rdf4j-queryalgebra-model Show documentation
A generic query algebra for RDF queries.
/*******************************************************************************
* Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
package org.eclipse.rdf4j.query.algebra;
import java.util.LinkedHashSet;
import java.util.Set;
import org.eclipse.rdf4j.query.algebra.helpers.TupleExprs;
/**
* A natural join between two tuple expressions.
*/
public class Join extends BinaryTupleOperator {
/*--------------*
* Constructors *
*--------------*/
public Join() {
}
/**
* Creates a new natural join operator.
*/
public Join(TupleExpr leftArg, TupleExpr rightArg) {
super(leftArg, rightArg);
}
/*---------*
* Methods *
*---------*/
/**
* @return true
if the right argument of this Join contains a projection, false
otherwise.
* @deprecated Use {@link TupleExprs#containsProjection(TupleExpr)} instead.
*/
@Deprecated(since = "2.0")
public boolean hasSubSelectInRightArg() {
return TupleExprs.containsSubquery(rightArg);
}
@Override
public Set getBindingNames() {
Set bindingNames = new LinkedHashSet<>(16);
bindingNames.addAll(getLeftArg().getBindingNames());
bindingNames.addAll(getRightArg().getBindingNames());
return bindingNames;
}
@Override
public Set getAssuredBindingNames() {
Set bindingNames = new LinkedHashSet<>(16);
bindingNames.addAll(getLeftArg().getAssuredBindingNames());
bindingNames.addAll(getRightArg().getAssuredBindingNames());
return bindingNames;
}
@Override
public void visit(QueryModelVisitor visitor) throws X {
visitor.meet(this);
}
@Override
public boolean equals(Object other) {
return other instanceof Join && super.equals(other);
}
@Override
public int hashCode() {
return super.hashCode() ^ "Join".hashCode();
}
@Override
public Join clone() {
return (Join) super.clone();
}
}