wt.query
Class SetOperator

java.lang.Object
  extended by wt.query.SQLOperator
      extended by wt.query.SetOperator
All Implemented Interfaces:
Serializable

public class SetOperator
extends wt.query.SQLOperator
implements Serializable

This class represents a Set Operator.

This class defines the following static final Set Operators: UNION, UNION_ALL, INTERSECT, and MINUS.

Supported API: true

Extendable: false

See Also:
Serialized Form

Field Summary
static SetOperator UNION
          Specifies a UNION set operator.
static SetOperator UNION_ALL
          Specifies a UNION ALL set operator.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

UNION

public static final SetOperator UNION
Specifies a UNION set operator.

Supported API: true


UNION_ALL

public static final SetOperator UNION_ALL
Specifies a UNION ALL set operator.

Supported API: true