Interface ComputeExpression
public interface ComputeExpression
Represents a compute expression.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetAlias()
Gets the name of the computation result if an alias name has been set.Gets the expression to compute.
-
Method Details
-
getExpression
Expression getExpression()Gets the expression to compute.- Returns:
- an
Expression
(but nevernull
)
-
getAlias
String getAlias()Gets the name of the computation result if an alias name has been set.- Returns:
- an identifier String (but never
null
)
-