Package com.github.eikecochu.sqlbuilder
Class Union
- java.lang.Object
-
- com.github.eikecochu.sqlbuilder.QueryPartImpl<Union>
-
- com.github.eikecochu.sqlbuilder.Union
-
- All Implemented Interfaces:
BeforeSelect,BeforeWith,QueryBuilder,QueryPart
public class Union extends QueryPartImpl<Union> implements QueryBuilder, BeforeSelect, BeforeWith
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedUnion(BeforeUnion parent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Unionall()Unionall(boolean all)Uniondistinct()java.lang.Stringstring(QueryOptions options)Transforms this statement into an SQL string-
Methods inherited from class com.github.eikecochu.sqlbuilder.QueryPartImpl
ext, parent, sql
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.github.eikecochu.sqlbuilder.BeforeSelect
select, select, select, selectSQL
-
Methods inherited from interface com.github.eikecochu.sqlbuilder.BeforeWith
with, with, withSQL
-
Methods inherited from interface com.github.eikecochu.sqlbuilder.QueryBuilder
query
-
-
-
-
Constructor Detail
-
Union
protected Union(BeforeUnion parent)
-
-
Method Detail
-
all
public Union all()
-
distinct
public Union distinct()
-
all
public Union all(boolean all)
-
string
public java.lang.String string(QueryOptions options)
Description copied from interface:QueryPartTransforms this statement into an SQL string
-
-