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

com.sap.cds.ql.cqn.transformation.CqnSearchTransformation Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version
/*******************************************************************
 * © 2023 SAP SE or an SAP affiliate company. All rights reserved. *
 *******************************************************************/
package com.sap.cds.ql.cqn.transformation;

import com.google.common.annotations.Beta;
import com.sap.cds.ql.cqn.CqnPredicate;

/**
 * Transformation that filters the input set with a search expression
 */
@Beta
public interface CqnSearchTransformation extends CqnTransformation {

	/**
	 * The search expression to filter the input set with
	 * 
	 * @return the search expression
	 */
	CqnPredicate search();

	@Override
	default Kind kind() {
		return Kind.SEARCH;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy