|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface ConditionOperator
The operator used between the filtered objects and the result objects in the subquery.
Example:
As an example, if you want
to list all of the stores in states that have a total sales revenue greater than two
million dollars, you would create a subquery that returns the states which have total
sales greater than two million dollars; your main query would then list only stores
in those states.
In this case, the field "State" would be the filtered object. The condition operator would be set to "InList". The result object (the fields returned to the main query) would also be "State". Furthermore, the subquery would contain a query condition specifying that we only want states where the total revenue is greater than two million dollars.
| Nested Class Summary | |
|---|---|
static class |
ConditionOperator.Enum
Enumeration value class for com.businessobjects.query.ConditionOperator. |
static class |
ConditionOperator.Factory
A factory class with static methods for creating instances of this type. |
| Field Summary | |
|---|---|
static ConditionOperator.Enum |
EQUAL
The "Equal" operator. |
static ConditionOperator.Enum |
GREATER
The "Greater" operator. |
static ConditionOperator.Enum |
GREATER_OR_EQUAL
The "GreaterOrEqual" operator. |
static ConditionOperator.Enum |
IN_LIST
The "InList" operator. |
static int |
INT_EQUAL
Returns the int value corresponding to "Equal" |
static int |
INT_GREATER
Returns the int value corresponding to "Greater" |
static int |
INT_GREATER_OR_EQUAL
Returns the int value corresponding to "GreaterOrEqual" |
static int |
INT_IN_LIST
Returns the int value corresponding to "InList" |
static int |
INT_LESS
Returns the int value corresponding to "IntLess" |
static int |
INT_LESS_OR_EQUAL
Returns the int value corresponding to "IntLessOrEqual" |
static int |
INT_NOT_EQUAL
Returns the int value corresponding to "NotEqual" |
static int |
INT_NOT_IN_LIST
Returns the int value corresponding to "IntNotInList" |
static ConditionOperator.Enum |
LESS
The "Less" operator. |
static ConditionOperator.Enum |
LESS_OR_EQUAL
The "LessOrEqual" operator. |
static ConditionOperator.Enum |
NOT_EQUAL
The "NotEqual" operator. |
static ConditionOperator.Enum |
NOT_IN_LIST
The "NotInList" operator. |
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 |
|---|
static final org.apache.xmlbeans.SchemaType type
Internal Use Only.
static final ConditionOperator.Enum EQUAL
The "Equal" operator.
static final ConditionOperator.Enum NOT_EQUAL
The "NotEqual" operator.
static final ConditionOperator.Enum GREATER
The "Greater" operator.
static final ConditionOperator.Enum GREATER_OR_EQUAL
The "GreaterOrEqual" operator.
static final ConditionOperator.Enum LESS
The "Less" operator.
static final ConditionOperator.Enum LESS_OR_EQUAL
The "LessOrEqual" operator.
static final ConditionOperator.Enum IN_LIST
The "InList" operator.
static final ConditionOperator.Enum NOT_IN_LIST
The "NotInList" operator.
static final int INT_EQUAL
Returns the int value corresponding to "Equal"
static final int INT_NOT_EQUAL
Returns the int value corresponding to "NotEqual"
static final int INT_GREATER
Returns the int value corresponding to "Greater"
static final int INT_GREATER_OR_EQUAL
Returns the int value corresponding to "GreaterOrEqual"
static final int INT_LESS
Returns the int value corresponding to "IntLess"
static final int INT_LESS_OR_EQUAL
Returns the int value corresponding to "IntLessOrEqual"
static final int INT_IN_LIST
Returns the int value corresponding to "InList"
static final int INT_NOT_IN_LIST
Returns the int value corresponding to "IntNotInList"
| Method Detail |
|---|
org.apache.xmlbeans.StringEnumAbstractBase enumValue()
Internal use only
void set(org.apache.xmlbeans.StringEnumAbstractBase e)
Internal use only
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||