Package org.jparsec.examples.sql.ast
Class Select
java.lang.Object
org.jparsec.examples.common.ValueObject
org.jparsec.examples.sql.ast.Select
- All Implemented Interfaces:
Relation
Models the select statement.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal booleanfinal GroupByfinal OrderByfinal List<Projection> final Expression -
Constructor Summary
ConstructorsConstructorDescriptionSelect(boolean distinct, List<Projection> projections, List<Relation> from, Expression where, GroupBy groupBy, OrderBy orderBy) -
Method Summary
Methods inherited from class org.jparsec.examples.common.ValueObject
equals, hashCode, toString
-
Field Details
-
distinct
public final boolean distinct -
projections
-
from
-
where
-
groupBy
-
orderBy
-
-
Constructor Details
-
Select
public Select(boolean distinct, List<Projection> projections, List<Relation> from, Expression where, GroupBy groupBy, OrderBy orderBy)
-