Package com.github.eikecochu.sqlbuilder
Interface QueryPart
-
- All Known Subinterfaces:
BeforeDelete,BeforeFrom,BeforeGroupBy,BeforeHaving,BeforeInsert,BeforeJoin,BeforeOrderBy,BeforeSelect,BeforeUnion,BeforeUpdate,BeforeWhere,BeforeWith,QueryBuilder
- All Known Implementing Classes:
Condition,Conditionable,Conditionable.Operator,ConditionPart,ConditionPart.Operator,ConditionValue.ConditionValueType,ConnectBy,Delete,Exists,Expression,From,GroupBy,Having,Insert,Join,Join.JoinMode,Name,NestedCondition,OrderBy,Query,QueryPartImpl,Select,StartWith,Union,Update,Where,With
public interface QueryPart
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.lang.Stringstring()Transforms this statement into an SQL string using the default QueryOptionsjava.lang.Stringstring(QueryOptions options)Transforms this statement into an SQL string
-
-
-
Method Detail
-
string
default java.lang.String string()
Transforms this statement into an SQL string using the default QueryOptions- Returns:
- The created SQL string
-
string
java.lang.String string(QueryOptions options)
Transforms this statement into an SQL string- Parameters:
options- The QueryOptions to apply for transformation- Returns:
- The created SQL string
-
-