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

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

There is a newer version: 2024.9.17689.20240905T073330Z-240800
Show newest version
/*
 * 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(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy