org.hibernate.search.engine.search.query.ExtendedSearchQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-search-engine Show documentation
Show all versions of hibernate-search-engine Show documentation
Hibernate Search engine, always required
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 {
}