|
SAP NetWeaver '04 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
A term used by the IRelationQueryBuilder .
| Method Summary | |
IRelationQuery |
between(java.lang.Object lowerValue,
java.lang.Object upperValue)
Return an expression which selects only those operands being between the given objects ( compareTo(lowerValue) <= 0 and compareTo(upperValue >=
0) ). |
IRelationQuery |
contains(java.lang.Object value)
Return an expression which selects only those operands having at least one value matching the given Object (compare gives 0). |
IRelationQuery |
contains(java.lang.String value)
Return an expression which selects only those operands having at least one value matching the given String. |
IRelationQuery |
containsIgnoreCase(java.lang.String value)
case insensitive version of contains(String). |
IRelationQuery |
equal(java.lang.Object value)
Return an expression which selects only those operands matching the given object ( compareTo() = 0 ). |
IRelationQuery |
exists()
Return an expression which selects only those operands where a value exists. |
IRelationQuery |
greater(java.lang.Object value)
Return an expression which selects only those operands being greater than the given object ( compareTo() > 0 ). |
IRelationQuery |
greaterEqual(java.lang.Object value)
Return an expression which selects only those operands being greater or equal than the given object ( compareTo() >= 0 ). |
IRelationQuery |
isMultivalued()
Return an expression which selects only those operands having more than one value. |
IRelationQuery |
less(java.lang.Object value)
Return an expression which selects only those operands being less than the given object ( compareTo() < 0 ). |
IRelationQuery |
lessEqual(java.lang.Object value)
Return an expression which selects only those operands being less or equal than the given object ( compareTo() <= 0 ). |
| Methods inherited from interface com.sapportals.wcm.service.relation.IRelationOperandQuery |
between, betweenIgnoreCase, equal, equalIgnoreCase, greater, greaterEqual, greaterEqualIgnoreCase, greaterIgnoreCase, inRelationPropertySelection, inSourceSelection, inTargetSelection, less, lessEqual, lessEqualIgnoreCase, lessIgnoreCase, like, likeIgnoreCase |
| Method Detail |
public IRelationQuery equal(java.lang.Object value)
compareTo() = 0 ).value - the Object to compare this term with.IRelationQuery .public IRelationQuery less(java.lang.Object value)
compareTo() < 0 ).value - the Object to compare this term with.IRelationQuery .public IRelationQuery lessEqual(java.lang.Object value)
compareTo() <= 0 ).value - the Object to compare this term with.IRelationQuery .public IRelationQuery greater(java.lang.Object value)
compareTo() > 0 ).value - the Object to compare this term with.IRelationQuery .public IRelationQuery greaterEqual(java.lang.Object value)
compareTo() >= 0 ).value - the Object to compare this term with.IRelationQuery .
public IRelationQuery between(java.lang.Object lowerValue,
java.lang.Object upperValue)
compareTo(lowerValue) <= 0 and compareTo(upperValue >=
0) ).lowerValue - TBD: Description of the incoming method parameterupperValue - TBD: Description of the incoming method parameterIRelationQuery .public IRelationQuery exists()
IRelationQuery .public IRelationQuery isMultivalued()
IRelationQuery .public IRelationQuery contains(java.lang.String value)
value - the String to compare this term with.IRelationQuery .public IRelationQuery containsIgnoreCase(java.lang.String value)
contains(String).value - TBD: Description of the incoming method parameterpublic IRelationQuery contains(java.lang.Object value)
value - the Object to compare this term with.IRelationQuery .
|
SAP NetWeaver '04 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||