Package com.github.eikecochu.sqlbuilder
Interface QueryPartSQL<T extends QueryPartSQL<T>>
-
- Type Parameters:
T- The type to return to when adding SQL
- All Superinterfaces:
QueryPart
- All Known Subinterfaces:
BeforeDelete<T>,BeforeFrom<T>,BeforeGroupBy<T>,BeforeHaving<T>,BeforeInsert<T>,BeforeJoin<T>,BeforeOrderBy<T>,BeforeSelect<T>,BeforeUnion<T>,BeforeUpdate<T>,BeforeWhere<T>,BeforeWith<T>
- All Known Implementing Classes:
Condition,Conditionable,ConnectBy,Delete,Exists,Expression,Fetch,From,GroupBy,Having,Insert,Join,Limit,NestedCondition,Offset,Offset,OrderBy,Query,QueryPartImpl,Select,StartWith,Union,Update,Where,With
public interface QueryPartSQL<T extends QueryPartSQL<T>> extends QueryPart
The QueryPartSQL interface is the interface of all expressions that support adding plain SQL into them instead of building methods.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tsql(java.lang.String sql)Set SQL as content
-
-
-
Method Detail
-
sql
T sql(java.lang.String sql)
Set SQL as content- Parameters:
sql- The SQL expression- Returns:
- This instance
-
-