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

org.hibernate.search.engine.search.query.ExtendedSearchQuery Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright Red Hat Inc. and Hibernate Authors
 */
package org.hibernate.search.engine.search.query;

/**
 * A base interface for subtypes of {@link SearchQuery} allowing to
 * easily override the result type for all relevant methods.
 *
 * @param  The type of query hits.
 * @param  The result type (extending {@link SearchResult}).
 * @param  The scroll type (extending {@link SearchScroll}).
 */
public interface ExtendedSearchQuery, SC extends SearchScroll>
		extends SearchQuery, ExtendedSearchFetchable {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy