Package com.gengoai.sql.operator
Class QueryOperator
- java.lang.Object
-
- com.gengoai.sql.statement.QueryStatement
-
- com.gengoai.sql.operator.QueryOperator
-
- All Implemented Interfaces:
Copyable<QueryStatement>
,SQLOperable
,SQLElement
,Serializable
public class QueryOperator extends QueryStatement implements SQLOperable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description QueryOperator(String operator, @NonNull QueryStatement query1, @NonNull QueryStatement query2)
Instantiates a new SQLQueryOperator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
-
Methods inherited from class com.gengoai.sql.statement.QueryStatement
copy, except, exists, intersect, query, query, query, query, queryScalar, queryScalarDouble, queryScalarLong, queryScalarString, union, unionAll
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.gengoai.sql.SQLElement
getClassName
-
-
-
-
Constructor Detail
-
QueryOperator
public QueryOperator(String operator, @NonNull @NonNull QueryStatement query1, @NonNull @NonNull QueryStatement query2)
Instantiates a new SQLQueryOperator.- Parameters:
operator
- the operatorquery1
- the first queryquery2
- the second query
-
-