|
SAP NetWeaver '04 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
A term used by the IRelationQueryBuilder .
| Method Summary | |
IRelationQuery |
between(Object lowerValue,
Object upperValue)
Return an expression which selects only those operands being between the given objects ( compareTo(lowerValue) <= 0 and compareTo(upperValue >=
0) ). |
IRelationQuery |
contains(Object value)
Return an expression which selects only those operands having at least one value matching the given Object (compare gives 0). |
IRelationQuery |
contains(String value)
Return an expression which selects only those operands having at least one value matching the given String. |
IRelationQuery |
containsIgnoreCase(String value)
case insensitive version of contains(String). |
IRelationQuery |
equal(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(Object value)
Return an expression which selects only those operands being greater than the given object ( compareTo() > 0 ). |
IRelationQuery |
greaterEqual(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(Object value)
Return an expression which selects only those operands being less than the given object ( compareTo() < 0 ). |
IRelationQuery |
lessEqual(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(Object value)
compareTo() = 0 ).
value - the Object to compare this term with.
IRelationQuery .public IRelationQuery less(Object value)
compareTo() < 0 ).
value - the Object to compare this term with.
IRelationQuery .public IRelationQuery lessEqual(Object value)
compareTo() <= 0 ).
value - the Object to compare this term with.
IRelationQuery .public IRelationQuery greater(Object value)
compareTo() > 0 ).
value - the Object to compare this term with.
IRelationQuery .public IRelationQuery greaterEqual(Object value)
compareTo() >= 0 ).
value - the Object to compare this term with.
IRelationQuery .
public IRelationQuery between(Object lowerValue,
Object upperValue)
compareTo(lowerValue) <= 0 and compareTo(upperValue >=
0) ).
lowerValue - TBD: Description of the incoming method parameterupperValue - TBD: Description of the incoming method parameter
IRelationQuery .public IRelationQuery exists()
IRelationQuery .public IRelationQuery isMultivalued()
IRelationQuery .public IRelationQuery contains(String value)
value - the String to compare this term with.
IRelationQuery .public IRelationQuery containsIgnoreCase(String value)
contains(String).
value - TBD: Description of the incoming method parameter
public IRelationQuery contains(Object value)
value - the Object to compare this term with.
IRelationQuery .
|
SAP NetWeaver '04 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||