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

org.hibernate.search.elasticsearch.ElasticsearchProjectionConstants Maven / Gradle / Ivy

There is a newer version: 5.11.12.Final
Show newest version
/*
 * Hibernate Search, full-text search for your domain model
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.search.elasticsearch;

/**
 * Projection constants specific to Elasticsearch.
 * 

* Implementator's note: When adding new constants, be sure to add them to * {@code ElasticsearchHSQueryImpl#SUPPORTED_PROJECTION_CONSTANTS}, too. * * @author Gunnar Morling */ public interface ElasticsearchProjectionConstants { /** * Represents the Hibernate entity returned in a search. */ String THIS = "__HSearch_This"; /** * Object id property */ String ID = "__HSearch_id"; /** * The legacy document's score from a search. */ String SCORE = "__HSearch_Score"; /** * Represents the Hibernate entity class returned in a search. In contrast to the other constants this constant * represents an actual field value of the underlying Lucene document and hence can directly be used in queries. */ String OBJECT_CLASS = "_hibernate_class"; /** * Represents the distance (in kilometers) between an entity and the * center of the search area in case of a spatial query. */ // TODO HSEARCH-2268: Make it start with "__" String SPATIAL_DISTANCE = "_HSearch_SpatialDistance"; /** * The JSON document as stored in Elasticsearch. */ String SOURCE = "__HSearch_Source"; /** * The time Elasticsearch took to execute the search, in milliseconds and as an {@code Integer}. *

The time is computed on the server side. */ String TOOK = "__HSearch_Took"; /** * Whether the search timed out on the Elasticsearch server or not, as a {@code Boolean}. *

Note that a timed-out search may still return results, they are just incomplete. *

This does not translate a network timeout while reaching out to the Elasticsearch server, * but a timeout internal to Elasticsearch itself. */ String TIMED_OUT = "__HSearch_TimedOut"; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy