|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.businessobjects.rebean.wi.ConditionOperator
public class ConditionOperator
Warning: This class is no longer functional from the SAP BusinessObjects 4.0 release onwards.
TheConditionOperator class is used to contain all possible
conditions used to create an AdvancedCondition.
An example of a ConditionOperator in the club example universe is:
when the revenue result in Query1 is
greater than any occurrence of
Revenue in Query2.
AdvancedCondition.setConditionOperator(ConditionOperator),
AdvancedCondition.getConditionOperator(),
Serialized Form| Field Summary | |
|---|---|
static int |
_EQUAL
The int value of EQUAL.value(). |
static int |
_GREATER
The int value of GREATER.value(). |
static int |
_GREATER_OR_EQUAL
The int value of GREATER_OR_EQUAL.value(). |
static int |
_IN_LIST
The int value of IN_LIST.value(). |
static int |
_LESS
The int value of LESS.value(). |
static int |
_LESS_OR_EQUAL
The int value of LESS_OR_EQUAL.value(). |
static int |
_NOT_EQUAL
The int value of NOT_EQUAL.value(). |
static int |
_NOT_IN_LIST
The int value of NOT_IN_LIST.value(). |
static ConditionOperator |
EQUAL
The Equal to ConditionOperator. |
static ConditionOperator |
GREATER
The greater than ConditionOperator. |
static ConditionOperator |
GREATER_OR_EQUAL
The greater than or equal to ConditionOperator. |
static ConditionOperator |
IN_LIST
The in list ConditionOperator. |
static ConditionOperator |
LESS
The less than ConditionOperator. |
static ConditionOperator |
LESS_OR_EQUAL
The less than or equal to ConditionOperator. |
static ConditionOperator |
NOT_EQUAL
The not equal to ConditionOperator. |
static ConditionOperator |
NOT_IN_LIST
The not in list ConditionOperator. |
| Method Summary | |
|---|---|
static ConditionOperator |
fromInt(int value)
Returns a ConditionOperator instance corresponding to
value, or null when value does not
correspond to any ConditionOperator. |
java.lang.String |
toString()
Returns a String representation of this operator
instnace |
int |
value()
Returns the int value of this operator instance. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final int _EQUAL
int value of EQUAL.value().
public static final int _NOT_EQUAL
int value of NOT_EQUAL.value().
public static final int _GREATER
int value of GREATER.value().
public static final int _GREATER_OR_EQUAL
int value of GREATER_OR_EQUAL.value().
public static final int _LESS
int value of LESS.value().
public static final int _LESS_OR_EQUAL
int value of LESS_OR_EQUAL.value().
public static final int _IN_LIST
int value of IN_LIST.value().
public static final int _NOT_IN_LIST
int value of NOT_IN_LIST.value().
public static final ConditionOperator EQUAL
ConditionOperator.
public static final ConditionOperator NOT_EQUAL
ConditionOperator.
public static final ConditionOperator GREATER
ConditionOperator.
public static final ConditionOperator GREATER_OR_EQUAL
ConditionOperator.
public static final ConditionOperator LESS
ConditionOperator.
public static final ConditionOperator LESS_OR_EQUAL
ConditionOperator.
public static final ConditionOperator IN_LIST
ConditionOperator.
public static final ConditionOperator NOT_IN_LIST
ConditionOperator.
| Method Detail |
|---|
public int value()
int value of this operator instance.
value in interface EnumItemint value of this operator instance.public java.lang.String toString()
String representation of this operator
instnace
toString in class java.lang.ObjectString representation of this operator
instance. This method is provided for debug purposes.public static ConditionOperator fromInt(int value)
ConditionOperator instance corresponding to
value, or null when value does not
correspond to any ConditionOperator.
ConditionOperator instance corresponding to
value, or null when value does not
correspond to any ConditionOperator.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||