Package javax.jcr.query.qom
Interface LowerCase
-
- All Superinterfaces:
DynamicOperand,Operand
public interface LowerCase extends DynamicOperand
Evaluates to the lower-case string value (or values, if multi-valued) ofoperand.If
operanddoes not evaluate to a string value, its value is first converted to a string. The lower-case string value is computed as though thetoLowerCase()method ofjava.lang.Stringwere called.If
operandevaluates to null, theLowerCaseoperand also evaluates to null.- Since:
- JCR 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DynamicOperandgetOperand()Gets the operand whose value is converted to a lower-case string.
-
-
-
Method Detail
-
getOperand
DynamicOperand getOperand()
Gets the operand whose value is converted to a lower-case string.- Returns:
- the operand; non-null
-
-