
com.sap.cds.ql.ElementRef Maven / Gradle / Ivy
/************************************************************************
* © 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);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy