javax.jcr.query.qom.UpperCase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
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();
}