Uses of Class
com.gengoai.sql.statement.JoinType
-
Packages that use JoinType Package Description com.gengoai.sql com.gengoai.sql.statement -
-
Uses of JoinType in com.gengoai.sql
Methods in com.gengoai.sql with parameters of type JoinType Modifier and Type Method Description protected String
SQLDialect. joinType(JoinType joinType)
Join type string. -
Uses of JoinType in com.gengoai.sql.statement
Methods in com.gengoai.sql.statement that return JoinType Modifier and Type Method Description static JoinType
JoinType. valueOf(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.Methods in com.gengoai.sql.statement with parameters of type JoinType Modifier and Type Method Description Select
Select. join(@NonNull JoinType type, @NonNull SQLElement table, @NonNull SQLElement criteria)
Adds a join with the given table on the given criteria to the from clause
-