com.businessobjects.query
Interface CombinedQueryOperator


public interface CombinedQueryOperator

Provides the operators that can be used in a CombinedQuery (such as "Union", "Intersect", "Minus"...). These operators are used between Query or CombinedQuery instances contained in a CombinedQuery instance.


Nested Class Summary
static class CombinedQueryOperator.Enum
          Enumeration value class for com.businessobjects.query.CombinedQueryOperator.
static class CombinedQueryOperator.Factory
          A factory class with static methods for creating instances of this type.
 
Field Summary
static int INT_INTERSECT
          Returns the int value corresponding to the "Intersect" CombinedQueryOperator
static int INT_MINUS
          Returns the int value corresponding to the "Minus" CombinedQueryOperator
static int INT_UNION
          Returns the int value corresponding to the "Union" CombinedQueryOperator
static CombinedQueryOperator.Enum INTERSECT
           Use the "Intersect" operator (similar to the "Intersect" SQL command) between the Query or CombinedQuery instances in the CombinedQuery instance.
static CombinedQueryOperator.Enum MINUS
           Use the "Minus" operator (similar to the "Minus" SQL command) between the Query or CombinedQuery instances in the CombinedQuery instance.
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
static CombinedQueryOperator.Enum UNION
           Use the "Union" operator (similar to the "Union" SQL command) between the Query or CombinedQuery instances in the CombinedQuery instance.
 
Method Summary
 org.apache.xmlbeans.StringEnumAbstractBase enumValue()
           Internal use only
 void set(org.apache.xmlbeans.StringEnumAbstractBase e)
           Internal use only
 

Field Detail

type

static final org.apache.xmlbeans.SchemaType type

Internal Use Only.


UNION

static final CombinedQueryOperator.Enum UNION

Use the "Union" operator (similar to the "Union" SQL command) between the Query or CombinedQuery instances in the CombinedQuery instance.


INTERSECT

static final CombinedQueryOperator.Enum INTERSECT

Use the "Intersect" operator (similar to the "Intersect" SQL command) between the Query or CombinedQuery instances in the CombinedQuery instance.


MINUS

static final CombinedQueryOperator.Enum MINUS

Use the "Minus" operator (similar to the "Minus" SQL command) between the Query or CombinedQuery instances in the CombinedQuery instance.


INT_UNION

static final int INT_UNION
Returns the int value corresponding to the "Union" CombinedQueryOperator

See Also:
Constant Field Values

INT_INTERSECT

static final int INT_INTERSECT
Returns the int value corresponding to the "Intersect" CombinedQueryOperator

See Also:
Constant Field Values

INT_MINUS

static final int INT_MINUS
Returns the int value corresponding to the "Minus" CombinedQueryOperator

See Also:
Constant Field Values
Method Detail

enumValue

org.apache.xmlbeans.StringEnumAbstractBase enumValue()

Internal use only


set

void set(org.apache.xmlbeans.StringEnumAbstractBase e)

Internal use only