org.hibernate.search.engine.search.projection.SearchProjection 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.projection;
/**
* A query projection that can be used to obtain particular values of an indexed document.
*
* Implementations of this interface are provided to users by Hibernate Search. Users must not try to implement this
* interface.
*
* @param
The type of the element returned by the projection.
*/
public interface SearchProjection
{
}