Uses of Class
org.jparsec.examples.sql.ast.JoinType
-
Packages that use JoinType Package Description org.jparsec.examples.sql.ast org.jparsec.examples.sql.parser -
-
Uses of JoinType in org.jparsec.examples.sql.ast
Fields in org.jparsec.examples.sql.ast declared as JoinType Modifier and Type Field Description JoinType
JoinRelation. joinType
Methods in org.jparsec.examples.sql.ast that return JoinType Modifier and Type Method Description static JoinType
JoinType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JoinType[]
JoinType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.jparsec.examples.sql.ast with parameters of type JoinType Constructor Description JoinRelation(Relation left, JoinType joinType, Relation right, Expression condition)
-
Uses of JoinType in org.jparsec.examples.sql.parser
Fields in org.jparsec.examples.sql.parser with type parameters of type JoinType Modifier and Type Field Description (package private) static Parser<JoinType>
RelationParser. FULL_JOIN
(package private) static Parser<JoinType>
RelationParser. INNER_JOIN
(package private) static Parser<JoinType>
RelationParser. LEFT_JOIN
(package private) static Parser<JoinType>
RelationParser. RIGHT_JOIN
Methods in org.jparsec.examples.sql.parser that return types with arguments of type JoinType Modifier and Type Method Description private static Parser<JoinType>
RelationParser. joinType(JoinType joinType, java.lang.String phrase1, java.lang.String phrase2)
Methods in org.jparsec.examples.sql.parser with parameters of type JoinType Modifier and Type Method Description private static Parser<JoinType>
RelationParser. joinType(JoinType joinType, java.lang.String phrase1, java.lang.String phrase2)
Method parameters in org.jparsec.examples.sql.parser with type arguments of type JoinType Modifier and Type Method Description private static Parser<java.util.function.UnaryOperator<Relation>>
RelationParser. joinOn(Parser<JoinType> joinType, Parser<Relation> right, Parser<Expression> cond)
-