|
SAP NetWeaver 7.20 (SP01) Composition Environment | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Condition>
com.sap.caf.rt.bol.util.Condition
public enum Condition
This enumeration represents, possible conditions that can be used in
QueryFilter instance.
QueryFilterFactory.createFilter(Condition, Object)| Enum Constant Summary | |
|---|---|
BETWEEN
Represents between constraint. |
|
EQ
Represents = constraint. |
|
GE
Represents >= constraint. |
|
GT
Represents > constraint. |
|
LE
Represents <= constraint. |
|
LT
Represents < constraint. |
|
NEQ
Represents ! |
|
| Method Summary | |
|---|---|
static Condition |
fromString(String sCondition)
Returns a Condition that corresponds to the supplied string representation. |
String |
toJPAString()
Returns JPA representation string for this Condition. |
static Condition |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Condition[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Condition EQ
public static final Condition LT
public static final Condition GT
public static final Condition LE
public static final Condition GE
public static final Condition NEQ
public static final Condition BETWEEN
| Method Detail |
|---|
public static Condition[] values()
for (Condition c : Condition.values()) System.out.println(c);
public static Condition valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic static Condition fromString(String sCondition)
sCondition - a String that corresponds to a Condition.
public String toJPAString()
| Access Rights |
|---|
| SC | DC |
|---|---|
[sap.com] CAF
|
[sap.com] caf/runtime/ear
|
|
SAP NetWeaver 7.20 (SP01) Composition Environment | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||