javax.jcr.query.qom.Length 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
/*
* Copyright 2009 Day Management AG, Switzerland. All rights reserved.
*/
package javax.jcr.query.qom;
/**
* Evaluates to the length (or lengths, if multi-valued) of a property.
*
* The length should be computed as though the getLength
method (or
* getLengths
, if multi-valued) of javax.jcr.Property
* were called.
*
* If {@link #getPropertyValue propertyValue} evaluates to null, the
* Length
operand also evaluates to null.
*
* @since JCR 2.0
*/
public interface Length
extends DynamicOperand {
/**
* Gets the property value for which to compute the length.
*
* @return the property value; non-null
*/
public PropertyValue getPropertyValue();
}