Class ASTSelect
- java.lang.Object
-
- org.eclipse.rdf4j.query.parser.sparql.ast.SimpleNode
-
- org.eclipse.rdf4j.query.parser.sparql.ast.ASTSelect
-
- All Implemented Interfaces:
Node
public class ASTSelect extends SimpleNode
-
-
Constructor Summary
Constructors Constructor Description ASTSelect(int id)
ASTSelect(SyntaxTreeBuilder p, int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ASTProjectionElem>
getProjectionElemList()
boolean
isDistinct()
boolean
isReduced()
boolean
isSubSelect()
boolean
isWildcard()
java.lang.Object
jjtAccept(SyntaxTreeBuilderVisitor visitor, java.lang.Object data)
Accept the visitor.void
setDistinct(boolean distinct)
void
setReduced(boolean reduced)
void
setWildcard(boolean wildcard)
java.lang.String
toString()
-
Methods inherited from class org.eclipse.rdf4j.query.parser.sparql.ast.SimpleNode
childrenAccept, dump, getId, isScopeChange, jjtAddChild, jjtAppendChild, jjtClose, jjtGetChild, jjtGetChild, jjtGetChildren, jjtGetChildren, jjtGetNumChildren, jjtGetParent, jjtGetValue, jjtOpen, jjtReplaceChild, jjtReplaceWith, jjtSetParent, jjtSetValue, setScopeChange, toString
-
-
-
-
Constructor Detail
-
ASTSelect
public ASTSelect(int id)
-
ASTSelect
public ASTSelect(SyntaxTreeBuilder p, int id)
-
-
Method Detail
-
jjtAccept
public java.lang.Object jjtAccept(SyntaxTreeBuilderVisitor visitor, java.lang.Object data) throws VisitorException
Description copied from class:SimpleNode
Accept the visitor.- Specified by:
jjtAccept
in interfaceNode
- Overrides:
jjtAccept
in classSimpleNode
- Throws:
VisitorException
-
isDistinct
public boolean isDistinct()
-
setDistinct
public void setDistinct(boolean distinct)
-
isReduced
public boolean isReduced()
-
setReduced
public void setReduced(boolean reduced)
-
isWildcard
public boolean isWildcard()
-
isSubSelect
public boolean isSubSelect()
-
setWildcard
public void setWildcard(boolean wildcard)
-
getProjectionElemList
public java.util.List<ASTProjectionElem> getProjectionElemList()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classSimpleNode
-
-