Uses of Interface
org.jparsec.examples.sql.ast.Relation
Packages that use Relation
-
Uses of Relation in org.jparsec.examples.sql.ast
Classes in org.jparsec.examples.sql.ast that implement RelationModifier and TypeClassDescriptionfinal classAn aliased relation.final classModels cross join.final classModels a join.final classModels the select statement.final classModels a table name.final classModels a union relation.Fields in org.jparsec.examples.sql.ast declared as RelationModifier and TypeFieldDescriptionfinal RelationCrossJoinRelation.leftfinal RelationJoinRelation.leftfinal RelationUnionRelation.leftfinal RelationAliasedRelation.relationfinal RelationBinaryRelationalExpression.relationfinal RelationUnaryRelationalExpression.relationfinal RelationCrossJoinRelation.rightfinal RelationJoinRelation.rightfinal RelationUnionRelation.rightFields in org.jparsec.examples.sql.ast with type parameters of type RelationConstructors in org.jparsec.examples.sql.ast with parameters of type RelationModifierConstructorDescriptionAliasedRelation(Relation relation, String alias) BinaryRelationalExpression(Expression expression, Op operator, Relation relation) CrossJoinRelation(Relation left, Relation right) JoinRelation(Relation left, JoinType joinType, Relation right, Expression condition) UnaryRelationalExpression(Relation relation, Op operator) UnionRelation(Relation left, boolean all, Relation right) -
Uses of Relation in org.jparsec.examples.sql.parser
Fields in org.jparsec.examples.sql.parser with type parameters of type RelationMethods in org.jparsec.examples.sql.parser that return types with arguments of type RelationModifier and TypeMethodDescriptionRelationParser.fromClause(Parser<Relation> rel) RelationParser.join(Parser<Relation> rel, Parser<Expression> cond) private static Parser<UnaryOperator<Relation>> RelationParser.query()TheParserfor a full fledged SQL query.RelationParser.query(Parser<Expression> expr, Parser<Expression> cond, Parser<Relation> rel) RelationParser.select(Parser<Expression> expr, Parser<Expression> cond, Parser<Relation> rel) Method parameters in org.jparsec.examples.sql.parser with type arguments of type RelationModifier and TypeMethodDescription(package private) static Parser<Expression> RelationParser.fromClause(Parser<Relation> rel) RelationParser.join(Parser<Relation> rel, Parser<Expression> cond) (package private) static Parser<Expression>