Class SetOperationExpression
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.SetOperationExpression
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>,NodeMetaDataHandler
Represents a set operation (union, unionall, intersect, minus) combining two GINQ expressions.
- Since:
- 6.0.0
-
Field Summary
Fields inherited from class org.codehaus.groovy.ast.expr.Expression
EMPTY_ARRAYFields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT -
Constructor Summary
ConstructorsConstructorDescriptionSetOperationExpression(AbstractGinqExpression left, String operation, GinqExpression right) Creates a set-operation expression. -
Method Summary
Modifier and TypeMethodDescription<R> Raccept(GinqAstVisitor<R> visitor) Accepts a visitor for this expression.getLeft()Returns the left query.Returns the operation name.getRight()Returns the right query.getText()Returns the textual GINQ form of this expression.toString()Returns the textual form of this expression.Methods 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
-
SetOperationExpression
Creates a set-operation expression.- Parameters:
left- the left queryoperation- the set-operation nameright- the right query
-
-
Method Details
-
getLeft
Returns the left query.- Returns:
- the left query
-
getOperation
Returns the operation name.- Returns:
- the operation name
-
getRight
Returns the right query.- Returns:
- the right query
-
accept
Accepts a visitor for this expression.- Specified by:
acceptin classAbstractGinqExpression- Type Parameters:
R- the visit result type- Parameters:
visitor- the visitor to accept- Returns:
- the visit result
-
getText
Returns the textual GINQ form of this expression. -
toString
Returns the textual form of this expression.
-