Class FromExpression
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.AnnotatedNode
org.codehaus.groovy.ast.expr.Expression
org.apache.groovy.ginq.dsl.expression.AbstractGinqExpression
org.apache.groovy.ginq.dsl.expression.DataSourceExpression
org.apache.groovy.ginq.dsl.expression.FromExpression
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>,DataSourceHolder,NodeMetaDataHandler
Represents the from expression
- Since:
- 4.0.0
-
Field Summary
Fields inherited from class org.apache.groovy.ginq.dsl.expression.DataSourceExpression
aliasExpr, dataSourceExprFields inherited from class org.codehaus.groovy.ast.expr.Expression
EMPTY_ARRAYFields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT -
Constructor Summary
ConstructorsConstructorDescriptionFromExpression(Expression aliasExpr, Expression dataSourceExpr) Creates afromclause. -
Method Summary
Modifier and TypeMethodDescription<R> Raccept(GinqAstVisitor<R> visitor) Accepts a visitor for this clause.Returns this clause as its own data-source expression.getText()Returns the textual GINQ form of this clause.voidsetDataSourceExpression(DataSourceExpression dataSourceExpression) Rejects replacing thefromclause with another data source.toString()Returns the textual form of this clause.Methods inherited from class org.apache.groovy.ginq.dsl.expression.DataSourceExpression
getAliasExpr, getDataSourceExpr, setDataSourceExprMethods inherited from class org.apache.groovy.ginq.dsl.expression.AbstractGinqExpression
transformExpression, visitMethods inherited from class org.codehaus.groovy.ast.expr.Expression
getType, setType, transformExpressions, transformExpressionsMethods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSyntheticMethods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePositionMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getMetaDataMap, getNodeMetaData, getNodeMetaData, getNodeMetaData, newMetaDataMap, putNodeMetaData, removeNodeMetaData, setMetaDataMap, setNodeMetaData
-
Constructor Details
-
FromExpression
Creates afromclause.- Parameters:
aliasExpr- the alias expressiondataSourceExpr- the source expression
-
-
Method Details
-
accept
Accepts a visitor for this clause.- Specified by:
acceptin classAbstractGinqExpression- Type Parameters:
R- the visit result type- Parameters:
visitor- the visitor to accept- Returns:
- the visit result
-
getDataSourceExpression
Returns this clause as its own data-source expression.- Returns:
- this instance
-
setDataSourceExpression
Rejects replacing thefromclause with another data source.- Parameters:
dataSourceExpression- the ignored replacement
-
getText
Returns the textual GINQ form of this clause. -
toString
Returns the textual form of this clause.
-