javax.jcr.query.qom.FullTextSearchScore 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 a DOUBLE
value equal to the full-text search score
* of a node.
*
* Full-text search score ranks a selector's nodes by their relevance to the
* fullTextSearchExpression
specified in a {@link FullTextSearch}.
* The values to which FullTextSearchScore
evaluates and the
* interpretation of those values are implementation specific.
* FullTextSearchScore
may evaluate to a constant value in a
* repository that does not support full-text search scoring or has no full-text
* indexed properties.
*
* @since JCR 2.0
*/
public interface FullTextSearchScore
extends DynamicOperand {
/**
* Gets the name of the selector against which to evaluate this operand.
*
* @return the selector name; non-null
*/
public String getSelectorName();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy