Uses of Class
edu.caltech.nanodb.queryast.FromClause.JoinConditionType
-
Packages that use FromClause.JoinConditionType Package Description edu.caltech.nanodb.queryast -
-
Uses of FromClause.JoinConditionType in edu.caltech.nanodb.queryast
Fields in edu.caltech.nanodb.queryast declared as FromClause.JoinConditionType Modifier and Type Field Description private FromClause.JoinConditionType
FromClause. condType
If this object represents a join expression, this field specifies the type of condition used in the join; either a natural join, a join with an ON expression, or a join with a USING clause.Methods in edu.caltech.nanodb.queryast that return FromClause.JoinConditionType Modifier and Type Method Description FromClause.JoinConditionType
FromClause. getConditionType()
Returns the join condition type.static FromClause.JoinConditionType
FromClause.JoinConditionType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FromClause.JoinConditionType[]
FromClause.JoinConditionType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in edu.caltech.nanodb.queryast with parameters of type FromClause.JoinConditionType Modifier and Type Method Description void
FromClause. setConditionType(FromClause.JoinConditionType type)
Sets the join condition type.
-