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

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

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/*
 * 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