Package io.prestosql.sql.tree
Class Delete
- java.lang.Object
-
- io.prestosql.sql.tree.Node
-
- io.prestosql.sql.tree.Statement
-
- io.prestosql.sql.tree.Delete
-
public class Delete extends Statement
-
-
Constructor Summary
Constructors Constructor Description Delete(NodeLocation location, Table table, java.util.Optional<Expression> where)Delete(Table table, java.util.Optional<Expression> where)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(AstVisitor<R,C> visitor, C context)Accessible forAstVisitor, useAstVisitor.process(Node, Object)instead.booleanequals(java.lang.Object obj)java.util.List<Node>getChildren()TablegetTable()java.util.Optional<Expression>getWhere()inthashCode()java.lang.StringtoString()-
Methods inherited from class io.prestosql.sql.tree.Node
getLocation
-
-
-
-
Constructor Detail
-
Delete
public Delete(Table table, java.util.Optional<Expression> where)
-
Delete
public Delete(NodeLocation location, Table table, java.util.Optional<Expression> where)
-
-
Method Detail
-
getTable
public Table getTable()
-
getWhere
public java.util.Optional<Expression> getWhere()
-
accept
public <R,C> R accept(AstVisitor<R,C> visitor, C context)
Description copied from class:NodeAccessible forAstVisitor, useAstVisitor.process(Node, Object)instead.
-
getChildren
public java.util.List<Node> getChildren()
- Specified by:
getChildrenin classNode
-
-