javax.jcr.query.qom.BindVariableValue 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 value of a bind variable.
*
*
* @since JCR 2.0
*/
public interface BindVariableValue
extends StaticOperand {
/**
* Gets the name of the bind variable.
*
* @return the bind variable name; non-null
*/
public String getBindVariableName();
}