Package net.hydromatic.morel.ast
Class Ast.Exists
java.lang.Object
net.hydromatic.morel.ast.AstNode
net.hydromatic.morel.ast.Ast.Exp
net.hydromatic.morel.ast.Ast.Query
net.hydromatic.morel.ast.Ast.Exists
- Enclosing class:
Ast
Exists expression.
-
Field Summary
Fields inherited from class net.hydromatic.morel.ast.Ast.Query
implicitYieldExp, steps -
Constructor Summary
ConstructorsConstructorDescriptionExists(Pos pos, com.google.common.collect.ImmutableList<Ast.FromStep> steps) -
Method Summary
Modifier and TypeMethodDescriptionAccepts a shuttle, calling theShuttle.visit(net.hydromatic.morel.ast.Ast.Literal)method appropriate to the type of this node, and returning the result.voidAccepts a visitor, calling theShuttle.visit(net.hydromatic.morel.ast.Ast.Literal)method appropriate to the type of this node, and returning the result.copy(List<Ast.FromStep> steps, @Nullable Ast.Exp implicitYieldExp) Creates a copy of thisFromorExistswith given contents, orthisif the contents are the same.Methods inherited from class net.hydromatic.morel.ast.Ast.Query
implicitYieldExp, isCompute, isInto, unparseMethods inherited from class net.hydromatic.morel.ast.Ast.Exp
args, forEachArg
-
Constructor Details
-
Exists
Exists(Pos pos, com.google.common.collect.ImmutableList<Ast.FromStep> steps)
-
-
Method Details
-
copy
Description copied from class:Ast.QueryCreates a copy of thisFromorExistswith given contents, orthisif the contents are the same. -
accept
Description copied from class:AstNodeAccepts a shuttle, calling theShuttle.visit(net.hydromatic.morel.ast.Ast.Literal)method appropriate to the type of this node, and returning the result. -
accept
Description copied from class:AstNodeAccepts a visitor, calling theShuttle.visit(net.hydromatic.morel.ast.Ast.Literal)method appropriate to the type of this node, and returning the result.
-