Package javax.jcr.query.qom
Interface UpperCase
-
- All Superinterfaces:
DynamicOperand
,Operand
- All Known Implementing Classes:
UpperCaseImpl
public interface UpperCase extends DynamicOperand
Evaluates to the upper-case string value (or values, if multi-valued) ofoperand
.If
operand
does not evaluate to a string value, its value is first converted to a string. The upper-case string value is computed as though thetoUpperCase()
method ofjava.lang.String
were called.If
operand
evaluates to null, theUpperCase
operand also evaluates to null.- Since:
- JCR 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DynamicOperand
getOperand()
Gets the operand whose value is converted to a upper-case string.
-
-
-
Method Detail
-
getOperand
DynamicOperand getOperand()
Gets the operand whose value is converted to a upper-case string.- Returns:
- the operand; non-null
-
-