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

com.sap.cds.ql.ElementRef Maven / Gradle / Ivy

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

import com.sap.cds.ql.cqn.CqnElementRef;

public interface ElementRef extends Value, CqnElementRef {

	/**
	 * Sets an alias.
	 * 
	 * @param alias the alias
	 * @return a ref with the given alias. Can be a new ref if this ref is immutable
	 */
	@Override
	ElementRef as(String alias);

	/**
	 * Sets the type.
	 * 
	 * @param type the type name
	 * @return a ref with the given type. Can be a new ref if this ref is immutable
	 */
	@Override
	 Value type(String type);

}