com.businessobjects.query
Interface QueryConditionOperator


public interface QueryConditionOperator

Provides operators that are applied to QueryCondition instances. For example, to return data that applies to all conditions, use the "And" operator. To return data that applies to any of the conditions, use the "Or" operator.


Nested Class Summary
static class QueryConditionOperator.Enum
          Enumeration value class for com.businessobjects.query.QueryConditionOperator.
static class QueryConditionOperator.Factory
          A factory class with static methods for creating instances of this type.
 
Field Summary
static QueryConditionOperator.Enum AND
           Use the "And" operator between the query conditions.
static int INT_AND
          Returns the int value corresponding to the "AND" QueryConditionOperator
static int INT_OR
          Returns the int value corresponding to the "OR" QueryConditionOperator
static QueryConditionOperator.Enum OR
           Use the "Or" operator between the query conditions.
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 
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.


AND

static final QueryConditionOperator.Enum AND

Use the "And" operator between the query conditions. This returns data that applies to all of the query conditions.


OR

static final QueryConditionOperator.Enum OR

Use the "Or" operator between the query conditions. This returns data that applies to any of the query conditions.


INT_AND

static final int INT_AND
Returns the int value corresponding to the "AND" QueryConditionOperator

See Also:
Constant Field Values

INT_OR

static final int INT_OR
Returns the int value corresponding to the "OR" QueryConditionOperator

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.