All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.jcr.query.qom.UpperCase Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2009 Day Management AG, Switzerland. All rights reserved.
 */
package javax.jcr.query.qom;

/**
 * Evaluates to the upper-case string value (or values, if multi-valued) of
 * {@link #getOperand operand}.
 * 

* If {@link #getOperand 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 the toUpperCase() method of java.lang.String * were called. *

* If {@link #getOperand operand} evaluates to null, the UpperCase * operand also evaluates to null. * * @since JCR 2.0 */ public interface UpperCase extends DynamicOperand { /** * Gets the operand whose value is converted to a upper-case string. * * @return the operand; non-null */ public DynamicOperand getOperand(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy