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

com.sap.cds.ql.cqn.CqnExistsSubquery Maven / Gradle / Ivy

The newest version!
/*******************************************************************
 * © 2021 SAP SE or an SAP affiliate company. All rights reserved. *
 *******************************************************************/
package com.sap.cds.ql.cqn;

public interface CqnExistsSubquery extends CqnPredicate {

	String OUTER = "$outer";

	public CqnSelect subquery();

	/**
	 * Dispatches the handling of this {@code CqnExistsSubquery} to a given visitor.
	 * 
	 * The subquery is not traversed.
	 * 
	 * @param visitor the {@link CqnVisitor}
	 */
	@Override
	default void accept(CqnVisitor visitor) {
		visitor.visit(this);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy