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

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

/************************************************************************
 * © 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
 ************************************************************************/
package com.sap.cds.ql.cqn;

import java.util.List;
import java.util.Map;
import java.util.stream.Stream;

import com.sap.cds.reflect.CdsEntity;
import com.sap.cds.reflect.CdsStructuredType;

public interface CqnXsert extends CqnStatement {

	List> entries();

	/**
	 * @deprecated instead use {@link #elements(CdsEntity)}
	 */
	@Deprecated
	Stream elements();

	/**
	 * The elements to be xserted by the statement.
	 * 
	 * @param target the target entity
	 * 
	 * @return a stream of the elements to be xserted
	 */
	Stream elements(CdsStructuredType target);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy