Package io.prestosql.sql.tree
Class Property
- java.lang.Object
-
- io.prestosql.sql.tree.Node
-
- io.prestosql.sql.tree.Property
-
public class Property extends Node
-
-
Constructor Summary
Constructors Constructor Description Property(Identifier name, Expression value)Property(NodeLocation location, Identifier name, Expression value)
-
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<? extends Node>getChildren()IdentifiergetName()ExpressiongetValue()inthashCode()java.lang.StringtoString()-
Methods inherited from class io.prestosql.sql.tree.Node
getLocation
-
-
-
-
Constructor Detail
-
Property
public Property(Identifier name, Expression value)
-
Property
public Property(NodeLocation location, Identifier name, Expression value)
-
-
Method Detail
-
getName
public Identifier getName()
-
getValue
public Expression getValue()
-
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<? extends Node> getChildren()
- Specified by:
getChildrenin classNode
-
-