Index

A B C D E F G H I J K L M N O P Q R S T U V W Y 
All Classes and Interfaces|All Packages|Constant Field Values

A

above(Object) - Method in interface org.hibernate.search.query.dsl.RangeMatchingContext
Deprecated.
The field value must be above above You can exclude the value above by calling .excludeLimit()
above(T) - Method in interface org.hibernate.search.query.dsl.FacetRangeAboveBelowContext
Deprecated.
 
above(T) - Method in interface org.hibernate.search.query.dsl.FacetRangeBelowContinuationContext
Deprecated.
 
above(T) - Method in interface org.hibernate.search.query.dsl.FacetRangeEndContext
Deprecated.
 
addToTotalCount(long) - Method in interface org.hibernate.search.batchindexing.MassIndexerProgressMonitor
Deprecated.
Notify the monitor that increment more entities have been detected in the database and will be indexed.
aggregation() - Method in interface org.hibernate.search.scope.spi.V5MigrationSearchScope
Deprecated.
 
all() - Method in interface org.hibernate.search.query.dsl.QueryBuilder
Deprecated.
See the javadoc of this class for how to create predicates in Hibernate Search 6. The equivalent predicate in Hibernate Search 6 is SearchPredicateFactory.matchAll().
AllContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
analyze() - Element in annotation type org.hibernate.search.annotations.Field
Deprecated.
 
Analyze - Enum in org.hibernate.search.annotations
Deprecated.
No longer necessary in Hibernate Search 6. Replace Field with FullTextField to define a field with an analyzer, or any other field annotation (e.g. KeywordField, GenericField, ...) to define a field without an analyzer.
analyzer() - Element in annotation type org.hibernate.search.annotations.Field
Deprecated.
 
Analyzer - Annotation Type in org.hibernate.search.annotations
Deprecated.
No longer necessary in Hibernate Search 6. Replace Field with FullTextField and pass the analyzer name directly to FullTextField.analyzer().
AnalyzerUtils - Class in org.hibernate.search.util
Deprecated.
Will be removed without replacement.
andByDistance() - Method in interface org.hibernate.search.query.dsl.sort.SortAdditionalSortFieldContext
Deprecated.
Order elements by distance.
andByField(String) - Method in interface org.hibernate.search.query.dsl.sort.SortAdditionalSortFieldContext
Deprecated.
Order elements by the value of a specific field.
andByIndexOrder() - Method in interface org.hibernate.search.query.dsl.sort.SortAdditionalSortFieldContext
Deprecated.
Order elements by their internal index order.
andByNative(SortField) - Method in interface org.hibernate.search.query.dsl.sort.SortAdditionalSortFieldContext
Deprecated.
Order element using the native backend API for Lucene.
andByScore() - Method in interface org.hibernate.search.query.dsl.sort.SortAdditionalSortFieldContext
Deprecated.
Order elements by their relevance score.
andField(String) - Method in interface org.hibernate.search.query.dsl.PhraseMatchingContext
Deprecated.
field / property the term query is executed on
andField(String) - Method in interface org.hibernate.search.query.dsl.RangeMatchingContext
Deprecated.
field / property the term query is executed on
andField(String) - Method in interface org.hibernate.search.query.dsl.SimpleQueryStringMatchingContext
Deprecated.
Field the query is executed on.
andField(String) - Method in interface org.hibernate.search.query.dsl.TermMatchingContext
Deprecated.
field / property the term query is executed on
andFields(String...) - Method in interface org.hibernate.search.query.dsl.SimpleQueryStringMatchingContext
Deprecated.
Fields the query is executed on.
andLongitude(double) - Method in interface org.hibernate.search.query.dsl.sort.SortLatLongContext
Deprecated.
Sort by the distance to the given longitude and formerly-defined latitude.
andLongitude(double) - Method in interface org.hibernate.search.query.dsl.WithinContext.LongitudeContext
Deprecated.
Longitude in degree
asc() - Method in interface org.hibernate.search.query.dsl.sort.SortOrder
Deprecated.
Sort in ascending order.

B

below(Object) - Method in interface org.hibernate.search.query.dsl.RangeMatchingContext
Deprecated.
The field value must be below below You can exclude the value below by calling .excludeLimit()
below(T) - Method in interface org.hibernate.search.query.dsl.FacetRangeAboveBelowContext
Deprecated.
 
bool() - Method in interface org.hibernate.search.query.dsl.QueryBuilder
Deprecated.
See the javadoc of this class for how to create predicates in Hibernate Search 6. The equivalent predicate in Hibernate Search 6 is SearchPredicateFactory.bool().
BooleanJunction<T extends BooleanJunction> - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
boostedTo(float) - Method in interface org.hibernate.search.query.dsl.FieldCustomization
Deprecated.
Boost the field to a given value Most of the time positive float: - lower than 1 to diminish the weight - higher than 1 to increase the weight Could be negative but not unless you understand what is going on (advanced)
boostedTo(float) - Method in interface org.hibernate.search.query.dsl.QueryCustomization
Deprecated.
Boost the query to a given value Most of the time positive float: - lower than 1 to diminish the weight - higher than 1 to increase the weight Could be negative but not unless you understand what is going on (advanced)
boostedTo(float) - Method in interface org.hibernate.search.query.dsl.SimpleQueryStringMatchingContext
Deprecated.
Boost the field to a given value Most of the time positive float: - lower than 1 to diminish the weight - higher than 1 to increase the weight Could be negative but not unless you understand what is going on (advanced)
buildQueryBuilder() - Method in interface org.hibernate.search.spi.SearchIntegrator
Deprecated.
 
byDistance() - Method in interface org.hibernate.search.query.dsl.sort.SortContext
Deprecated.
Order elements by distance.
byField(String) - Method in interface org.hibernate.search.query.dsl.sort.SortContext
Deprecated.
Order elements by the value of a specific field.
byIndexOrder() - Method in interface org.hibernate.search.query.dsl.sort.SortContext
Deprecated.
Order elements by their internal index order.
byNative(SortField) - Method in interface org.hibernate.search.query.dsl.sort.SortContext
Deprecated.
Order element using the native backend API for Lucene.
byScore() - Method in interface org.hibernate.search.query.dsl.sort.SortContext
Deprecated.
Order elements by their relevance score.

C

CalendarBridge - Annotation Type in org.hibernate.search.annotations
Deprecated.
DateBridge/CalendarBridge are no longer available in Hibernate Search 6. If you cannot move your properties to Java 8 date/time types, implement your own bridge and apply it with GenericField.valueBridge(). If you can move your properties to Java 8 date/time types, do so, remove this annotation and replace Field with GenericField. Then, either use a Java type with the appropriate resolution (LocalDate, ...) and match predicates, or use a type with more resolution than necessary but rely on range predicates (e.g. f.range().field("myField").between(LocalDate.now().atStartOfDay(), LocalDate.now().plusDays(1).atStartOfDay()) for a "day" resolution on a LocalDateTime field).
COMPRESS - Enum constant in enum org.hibernate.search.annotations.Store
Deprecated.
stores the value in the index in a compressed form
Coordinates - Interface in org.hibernate.search.spatial
Deprecated.
Use GeoPoint instead. Refer to the migration guide for more information.
COORDINATES_DEFAULT_FIELD - Static variable in annotation type org.hibernate.search.annotations.Spatial
Deprecated.
Prefix used to generate field names for a default Spatial annotation
COUNT_ASC - Enum constant in enum org.hibernate.search.query.facet.FacetSortOrder
Deprecated.
Facets are returned by count with the lowest count first
COUNT_DESC - Enum constant in enum org.hibernate.search.query.facet.FacetSortOrder
Deprecated.
Facets are returned by count with the lowest count first
createFacetingRequest() - Method in interface org.hibernate.search.query.dsl.FacetTermination
Deprecated.
 
createHSQuery(Query, V5MigrationSearchSession<LOS>, Consumer<LOS>, Class<?>...) - Method in interface org.hibernate.search.spi.SearchIntegrator
Deprecated.
Return an Hibernate Search query object.
createQuery() - Method in interface org.hibernate.search.query.dsl.Termination
Deprecated.
Return the lucene query representing the operation
createSort() - Method in interface org.hibernate.search.query.dsl.sort.SortTermination
Deprecated.
Return the Lucene Sort corresponding to the requested sort.

D

DatabaseRetrievalMethod - Enum in org.hibernate.search.query
Deprecated.
This setting is ignored in Hibernate Search 6.
DateBridge - Annotation Type in org.hibernate.search.annotations
Deprecated.
DateBridge/CalendarBridge are no longer available in Hibernate Search 6. If you cannot move your properties to Java 8 date/time types, implement your own bridge and apply it with GenericField.valueBridge(). If you can move your properties to Java 8 date/time types, do so, remove this annotation and replace Field with GenericField. Then, either use a Java type with the appropriate resolution (LocalDate, ...) and match predicates, or use a type with more resolution than necessary but rely on range predicates (e.g. f.range().field("myField").between(LocalDate.now().atStartOfDay(), LocalDate.now().plusDays(1).atStartOfDay()) for a "day" resolution on a LocalDateTime field).
DAY - Enum constant in enum org.hibernate.search.annotations.Resolution
Deprecated.
 
definition() - Element in annotation type org.hibernate.search.annotations.Analyzer
Deprecated.
 
definition() - Element in annotation type org.hibernate.search.annotations.Normalizer
Deprecated.
 
depth() - Element in annotation type org.hibernate.search.annotations.IndexedEmbedded
Deprecated.
Stop indexing embedded elements when depth is reached.
desc() - Method in interface org.hibernate.search.query.dsl.sort.SortOrder
Deprecated.
Sort in descending order.
disableFaceting(String) - Method in interface org.hibernate.search.query.engine.spi.FacetManager
Deprecated.
Disable a facet with the given name.
disableScoring() - Method in interface org.hibernate.search.query.dsl.MustJunction
Deprecated.
Disables scoring on the subquery.
discrete() - Method in interface org.hibernate.search.query.dsl.FacetContinuationContext
Deprecated.
Start building a discrete facet
DiscreteFacetContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
DO_NOT_INDEX_NULL - Static variable in annotation type org.hibernate.search.annotations.Field
Deprecated.
Default value for the Field.indexNullAs() parameter.
DOCUMENT - Static variable in interface org.hibernate.search.engine.ProjectionConstants
Deprecated.
See the javadoc of this class for how to create projections in Hibernate Search 6. The equivalent projection in Hibernate Search 6 is LuceneSearchProjectionFactory.document(). You will need to pass LuceneExtension.get() to SearchProjectionFactory.extension(SearchProjectionFactoryExtension) in order to get access to this Lucene-specific feature.
DocumentId - Annotation Type in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's DocumentId instead.
documentsAdded(long) - Method in interface org.hibernate.search.backend.IndexingMonitor
Deprecated.
Notify the monitor that increment more documents have been added to the index.
documentsBuilt(int) - Method in interface org.hibernate.search.batchindexing.MassIndexerProgressMonitor
Deprecated.
Notify the monitor that increment more documents have been built.

E

enableFaceting(FacetingRequest) - Method in interface org.hibernate.search.query.engine.spi.FacetManager
Deprecated.
Enable a facet request.
entitiesLoaded(int) - Method in interface org.hibernate.search.batchindexing.MassIndexerProgressMonitor
Deprecated.
Notify the monitor that increment more entities have been loaded from the database.
EntityContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
except(Query...) - Method in interface org.hibernate.search.query.dsl.AllContext
Deprecated.
Exclude the documents matching these queries
excludeLimit() - Method in interface org.hibernate.search.query.dsl.FacetRangeAboveContext
Deprecated.
 
excludeLimit() - Method in interface org.hibernate.search.query.dsl.FacetRangeBelowContinuationContext
Deprecated.
 
excludeLimit() - Method in interface org.hibernate.search.query.dsl.FacetRangeEndContext
Deprecated.
 
excludeLimit() - Method in interface org.hibernate.search.query.dsl.FacetRangeLimitContext
Deprecated.
 
excludeLimit() - Method in interface org.hibernate.search.query.dsl.RangeMatchingContext.FromRangeContext
Deprecated.
 
excludeLimit() - Method in interface org.hibernate.search.query.dsl.RangeTerminationExcludable
Deprecated.
 
explain(Object) - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
Return the Lucene Explanation object describing the score computation for the matching object/document in the current query
EXPLANATION - Static variable in interface org.hibernate.search.engine.ProjectionConstants
Deprecated.
See the javadoc of this class for how to create projections in Hibernate Search 6. The equivalent projection in Hibernate Search 6 is LuceneSearchProjectionFactory.explanation(). You will need to pass LuceneExtension.get() to SearchProjectionFactory.extension(SearchProjectionFactoryExtension) in order to get access to this Lucene-specific feature.

F

facet() - Method in interface org.hibernate.search.query.dsl.QueryBuilder
Deprecated.
See the deprecation note on FacetContext.
Facet - Interface in org.hibernate.search.query.facet
Deprecated.
See the deprecation note on FacetContext.
Facet - Annotation Type in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's field annotations (GenericField, KeywordField, FullTextField, ...) and enable faceting with @GenericField(aggregable = Aggregable.YES) instead.
FacetContext - Interface in org.hibernate.search.query.dsl
Deprecated.
Instead of using Hibernate Search 5 APIs, get a org.hibernate.search.mapper.orm.session.SearchSession using org.hibernate.search.mapper.orm.Search#session(org.hibernate.Session), create a SearchQuery with org.hibernate.search.mapper.orm.session.SearchSession#search(Class), and define your facets (now called aggregations) using SearchQueryOptionsStep.aggregation(AggregationKey, Function). You can then fetch the query result using SearchFetchable.fetch(Integer) and get each aggregation using SearchResult.aggregation(AggregationKey). Refer to the migration guide for more information.
FacetContinuationContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on FacetContext.
FacetFieldContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on FacetContext.
FacetingRequest - Interface in org.hibernate.search.query.facet
Deprecated.
See the deprecation note on FacetContext.
FacetManager - Interface in org.hibernate.search.query.engine.spi
Deprecated.
Instead of using Hibernate Search 5 APIs, get a org.hibernate.search.mapper.orm.session.SearchSession using org.hibernate.search.mapper.orm.Search#session(org.hibernate.Session), create a SearchQuery with org.hibernate.search.mapper.orm.session.SearchSession#search(Class), and define your facets (now called aggregations) using SearchQueryOptionsStep.aggregation(AggregationKey, Function). You can then fetch the query result using SearchFetchable.fetch(Integer) and get each aggregation using SearchResult.aggregation(AggregationKey). Refer to the migration guide for more information.
FacetParameterContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on FacetContext.
FacetRangeAboveBelowContext<T> - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on FacetContext.
FacetRangeAboveContext<T> - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on FacetContext.
FacetRangeBelowContinuationContext<T> - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on FacetContext.
FacetRangeEndContext<T> - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on FacetContext.
FacetRangeLimitContext<T> - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on FacetContext.
FacetRangeStartContext<T> - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on FacetContext.
Facets - Annotation Type in org.hibernate.search.annotations
Deprecated.
See the deprecation note on Facet.
FacetSortOrder - Enum in org.hibernate.search.query.facet
Deprecated.
See the deprecation note on FacetContext.
FacetTermination - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on FacetContext.
failAfter(long, TimeUnit) - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
fetch() - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
Execute the Lucene query and return the hits.
Field - Annotation Type in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's field annotations instead:
  • FullTextField for text fields with an analyzer.
  • KeywordField for text fields with a normalizer.
  • GenericField for non-text fields.
FIELD_VALUE - Enum constant in enum org.hibernate.search.query.facet.FacetSortOrder
Deprecated.
Facets are returned in the alphabetical order
FieldCustomization<T> - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
Fields - Annotation Type in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's field annotations instead:
  • FullTextField for text fields with an analyzer.
  • KeywordField for text fields with a normalizer.
  • GenericField for non-text fields.
filteredBy(Query) - Method in interface org.hibernate.search.query.dsl.QueryCustomization
Deprecated.
Filter the query results with the given Query instance
FIND_BY_ID - Enum constant in enum org.hibernate.search.query.DatabaseRetrievalMethod
Deprecated.
Load each object by its identifier one by one.
firstResult(int) - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
Set the first element to retrieve.
forEntity(Class<?>) - Method in interface org.hibernate.search.query.dsl.QueryContextBuilder
Deprecated.
Creates an entity context which can be used to obtain a QueryBuilder.
forField() - Element in annotation type org.hibernate.search.annotations.Facet
Deprecated.
 
forField() - Element in annotation type org.hibernate.search.annotations.NumericField
Deprecated.
 
forField() - Element in annotation type org.hibernate.search.annotations.SortableField
Deprecated.
 
from(T) - Method in interface org.hibernate.search.query.dsl.FacetRangeStartContext
Deprecated.
 
from(T) - Method in interface org.hibernate.search.query.dsl.RangeMatchingContext
Deprecated.
 
fromCoordinates(Coordinates) - Method in interface org.hibernate.search.query.dsl.sort.SortDistanceFieldContext
Deprecated.
Sort by the distance to the given Coordinates.
fromLatitude(double) - Method in interface org.hibernate.search.query.dsl.sort.SortDistanceFieldContext
Deprecated.
Sort by the distance to the given latitude and subsequently-defined longitude.
fuzzy() - Method in interface org.hibernate.search.query.dsl.TermContext
Deprecated.
Use a fuzzy search approximation (aka edit distance)
FuzzyContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.

G

get() - Method in interface org.hibernate.search.query.dsl.EntityContext
Deprecated.
 
getCount() - Method in interface org.hibernate.search.query.facet.Facet
Deprecated.
 
getFacetingName() - Method in interface org.hibernate.search.query.facet.Facet
Deprecated.
 
getFacetingName() - Method in interface org.hibernate.search.query.facet.FacetingRequest
Deprecated.
 
getFacetManager() - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
getFacets(String) - Method in interface org.hibernate.search.query.engine.spi.FacetManager
Deprecated.
Returns the Facets for a given facet name
getFieldName() - Method in interface org.hibernate.search.query.facet.Facet
Deprecated.
Return the Document field name this facet is targeting.
getFieldName() - Method in interface org.hibernate.search.query.facet.FacetingRequest
Deprecated.
 
getLatitude() - Method in interface org.hibernate.search.spatial.Coordinates
Deprecated.
 
getLongitude() - Method in interface org.hibernate.search.spatial.Coordinates
Deprecated.
 
getLuceneQuery() - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
getMax() - Method in interface org.hibernate.search.query.facet.RangeFacet
Deprecated.
 
getMaxNumberOfFacets() - Method in interface org.hibernate.search.query.facet.FacetingRequest
Deprecated.
 
getMin() - Method in interface org.hibernate.search.query.facet.RangeFacet
Deprecated.
 
getProjectedFields() - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
getQueryString() - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
getResultSize() - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
getSort() - Method in interface org.hibernate.search.query.facet.FacetingRequest
Deprecated.
 
getTargetedEntities() - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
getValue() - Method in interface org.hibernate.search.query.facet.Facet
Deprecated.
 

H

hasPartialResults() - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
hasZeroCountsIncluded() - Method in interface org.hibernate.search.query.facet.FacetingRequest
Deprecated.
 
HOUR - Enum constant in enum org.hibernate.search.annotations.Resolution
Deprecated.
 
HSQuery - Interface in org.hibernate.search.query.engine.spi
Deprecated.
This class will be removed without replacement. Use actual API instead.

I

ID - Static variable in interface org.hibernate.search.engine.ProjectionConstants
Deprecated.
See the javadoc of this class for how to create projections in Hibernate Search 6. The equivalent projection in Hibernate Search 6 is SearchProjectionFactory.entityReference(); call .id() on the reference to get the entity identifier.
idProjection() - Method in interface org.hibernate.search.scope.spi.V5MigrationSearchScope
Deprecated.
 
ignoreAnalyzer() - Method in interface org.hibernate.search.query.dsl.FieldCustomization
Deprecated.
Advanced Do not execute the analyzer on the text.
ignoreFieldBridge() - Method in interface org.hibernate.search.query.dsl.FieldCustomization
Deprecated.
Do not try and find the field bridge nor apply the object / string conversion matching objects should be of type String in this case.
impl() - Element in annotation type org.hibernate.search.annotations.Normalizer
Deprecated.
 
includeEmbeddedObjectId() - Element in annotation type org.hibernate.search.annotations.IndexedEmbedded
Deprecated.
Returns true, if the id of the embedded object should be included into the index, false otherwise.
includePaths() - Element in annotation type org.hibernate.search.annotations.IndexedEmbedded
Deprecated.
List which paths of the object graph should be included in the index, and need to match the field names used to store them in the index, so they will also match the field names used to specify full text queries.
includeZeroCounts(boolean) - Method in interface org.hibernate.search.query.dsl.FacetParameterContext
Deprecated.
 
index() - Element in annotation type org.hibernate.search.annotations.Field
Deprecated.
 
index() - Element in annotation type org.hibernate.search.annotations.Indexed
Deprecated.
 
Index - Enum in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's field annotations (GenericField, KeywordField, FullTextField, ...) and enable/disable indexing with @GenericField(searchable = Searchable.YES) instead.
Indexed - Annotation Type in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's Indexed instead.
IndexedEmbedded - Annotation Type in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's IndexedEmbedded instead.
indexingCompleted() - Method in interface org.hibernate.search.batchindexing.MassIndexerProgressMonitor
Deprecated.
Notify the monitor that indexing is complete.
IndexingMonitor - Interface in org.hibernate.search.backend
Deprecated.
See the deprecation note on MassIndexerProgressMonitor.
indexManagers() - Method in interface org.hibernate.search.scope.spi.V5MigrationSearchScope
Deprecated.
 
indexNullAs() - Element in annotation type org.hibernate.search.annotations.Field
Deprecated.
 
isEmpty() - Method in interface org.hibernate.search.query.dsl.BooleanJunction
Deprecated.
 
isEmpty(String) - Static method in class org.hibernate.search.util.StringHelper
Deprecated.
 
isIncludeMax() - Method in interface org.hibernate.search.query.facet.RangeFacet
Deprecated.
 
isIncludeMin() - Method in interface org.hibernate.search.query.facet.RangeFacet
Deprecated.
 
isNotEmpty(String) - Static method in class org.hibernate.search.util.StringHelper
Deprecated.
 

J

join(Iterable<?>, String) - Static method in class org.hibernate.search.util.StringHelper
Deprecated.
Joins the elements of the given iterable to a string, separated by the given separator string.
join(Object[], String) - Static method in class org.hibernate.search.util.StringHelper
Deprecated.
Joins the elements of the given array to a string, separated by the given separator string.
join(Iterator<?>, String) - Static method in class org.hibernate.search.util.StringHelper
Deprecated.
Joins the elements of the given iterator to a string, separated by the given separator string.

K

keyword() - Method in interface org.hibernate.search.query.dsl.QueryBuilder
Deprecated.
See the javadoc of this class for how to create predicates in Hibernate Search 6. The equivalent predicate in Hibernate Search 6 is SearchPredicateFactory.match(). For wildcard predicates, use SearchPredicateFactory.wildcard().
KM - Enum constant in enum org.hibernate.search.query.dsl.Unit
Deprecated.
Kilometers

L

Latitude - Annotation Type in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's Latitude instead. See also the javadoc of Spatial.
log - Static variable in class org.hibernate.search.util.AnalyzerUtils
Deprecated.
 
Longitude - Annotation Type in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's Longitude instead. See also the javadoc of Spatial.

M

MassIndexerProgressMonitor - Interface in org.hibernate.search.batchindexing
Deprecated.
Instead of using Hibernate Search 5 APIs, get a org.hibernate.search.mapper.orm.session.SearchSession using org.hibernate.search.mapper.orm.Search#session(org.hibernate.Session), create a mass indexer with org.hibernate.search.mapper.orm.session.SearchSession#massIndexer(Class[]), and implement the interface org.hibernate.search.mapper.orm.massindexing.MassIndexingMonitor in your monitor. Refer to the migration guide for more information.
matching(Object) - Method in interface org.hibernate.search.query.dsl.TermMatchingContext
Deprecated.
Value searched in the field or fields.
matching(String) - Method in interface org.hibernate.search.query.dsl.SimpleQueryStringDefinitionTermination
Deprecated.
Simple query string passed to the SimpleQueryParser.
maxFacetCount(int) - Method in interface org.hibernate.search.query.dsl.FacetParameterContext
Deprecated.
Limits the maximum numbers of facets to the specified number.
maxResults() - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
maxResults(Integer) - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
Set the maximum number of elements to retrieve.
MILLISECOND - Enum constant in enum org.hibernate.search.annotations.Resolution
Deprecated.
 
minimumShouldMatchNumber(int) - Method in interface org.hibernate.search.query.dsl.BooleanJunction
Deprecated.
minimumShouldMatchPercent(int) - Method in interface org.hibernate.search.query.dsl.BooleanJunction
Deprecated.
MINUTE - Enum constant in enum org.hibernate.search.annotations.Resolution
Deprecated.
 
MONTH - Enum constant in enum org.hibernate.search.annotations.Resolution
Deprecated.
 
must(Query) - Method in interface org.hibernate.search.query.dsl.BooleanJunction
Deprecated.
The boolean query results must (or must not) match the subquery Call the .not() method to ensure results of the boolean query do NOT match the subquery.
MustJunction - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.

N

name() - Element in annotation type org.hibernate.search.annotations.Facet
Deprecated.
 
name() - Element in annotation type org.hibernate.search.annotations.Field
Deprecated.
 
name() - Element in annotation type org.hibernate.search.annotations.Spatial
Deprecated.
The name of the field prefix where spatial index information is stored in a Lucene document.
name(String) - Method in interface org.hibernate.search.query.dsl.FacetContext
Deprecated.
 
NO - Enum constant in enum org.hibernate.search.annotations.Analyze
Deprecated.
Index field content as is (not analyzed)
NO - Enum constant in enum org.hibernate.search.annotations.Index
Deprecated.
Do not index the field value.
NO - Enum constant in enum org.hibernate.search.annotations.Norms
Deprecated.
Do not store norms
NO - Enum constant in enum org.hibernate.search.annotations.Store
Deprecated.
does not store the value in the index
NO - Enum constant in enum org.hibernate.search.annotations.TermVector
Deprecated.
Do not store term vectors.
normalizer() - Element in annotation type org.hibernate.search.annotations.Field
Deprecated.
 
Normalizer - Annotation Type in org.hibernate.search.annotations
Deprecated.
No longer necessary in Hibernate Search 6. Replace Field with KeywordField and pass the normalizer name directly to KeywordField.normalizer().
norms() - Element in annotation type org.hibernate.search.annotations.Field
Deprecated.
 
Norms - Enum in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's text field annotations (KeywordField, FullTextField) and enable/disable norms with @FullTextField(norms = Norms.YES) instead.
not() - Method in interface org.hibernate.search.query.dsl.MustJunction
Deprecated.
Negate the must clause.
NumericField - Annotation Type in org.hibernate.search.annotations
Deprecated.
This annotation does not do anything anymore and is not necessary. It can be removed safely.
NumericFields - Annotation Type in org.hibernate.search.annotations
Deprecated.
This annotation does not do anything anymore and is not necessary. It can be removed safely.

O

OBJECT_CLASS - Static variable in interface org.hibernate.search.engine.ProjectionConstants
Deprecated.
See the javadoc of this class for how to create projections in Hibernate Search 6. The equivalent projection in Hibernate Search 6 is SearchProjectionFactory.entityReference(); call .type() on the reference to get the entity type.
objectClassProjection() - Method in interface org.hibernate.search.scope.spi.V5MigrationSearchScope
Deprecated.
 
ObjectLookupMethod - Enum in org.hibernate.search.query
Deprecated.
Instead of using Hibernate Search 5 APIs, get a org.hibernate.search.mapper.orm.session.SearchSession using org.hibernate.search.mapper.orm.Search#session(org.hibernate.Session), create a SearchQuery with org.hibernate.search.mapper.orm.session.SearchSession#search(Class), and define your loading options using SearchQueryOptionsStep.loading(Consumer). To set the equivalent to ObjectLookupMethod in Hibernate Search 6, use org.hibernate.search.mapper.orm.search.loading.dsl.SearchLoadingOptionsStep#cacheLookupStrategy(org.hibernate.search.mapper.orm.search.loading.EntityLoadingCacheLookupStrategy) Refer to the migration guide for more information.
of() - Element in annotation type org.hibernate.search.annotations.Latitude
Deprecated.
 
of() - Element in annotation type org.hibernate.search.annotations.Longitude
Deprecated.
 
ofCoordinates(Coordinates) - Method in interface org.hibernate.search.query.dsl.WithinContext
Deprecated.
Coordinate object representing the center of the search
ofLatitude(double) - Method in interface org.hibernate.search.query.dsl.WithinContext
Deprecated.
Latitude in degree
onField(String) - Method in interface org.hibernate.search.query.dsl.FacetFieldContext
Deprecated.
 
onField(String) - Method in interface org.hibernate.search.query.dsl.FuzzyContext
Deprecated.
field / property the term query is executed on
onField(String) - Method in interface org.hibernate.search.query.dsl.PhraseContext
Deprecated.
field / property the term query is executed on
onField(String) - Method in interface org.hibernate.search.query.dsl.RangeContext
Deprecated.
 
onField(String) - Method in interface org.hibernate.search.query.dsl.SimpleQueryStringContext
Deprecated.
 
onField(String) - Method in interface org.hibernate.search.query.dsl.sort.SortDistanceNoFieldContext
Deprecated.
Order elements by distance computed from the coordinates carried by the given field.
onField(String) - Method in interface org.hibernate.search.query.dsl.SpatialContext
Deprecated.
Used to select the spatial field/coordinates used for this query.
onField(String) - Method in interface org.hibernate.search.query.dsl.TermContext
Deprecated.
 
onField(String) - Method in interface org.hibernate.search.query.dsl.WildcardContext
Deprecated.
 
onFields(String...) - Method in interface org.hibernate.search.query.dsl.FuzzyContext
Deprecated.
fields / properties the term query is executed on
onFields(String...) - Method in interface org.hibernate.search.query.dsl.TermContext
Deprecated.
 
onFields(String...) - Method in interface org.hibernate.search.query.dsl.WildcardContext
Deprecated.
 
onFields(String, String...) - Method in interface org.hibernate.search.query.dsl.SimpleQueryStringContext
Deprecated.
 
onMissingValue() - Method in interface org.hibernate.search.query.dsl.sort.SortFieldContext
Deprecated.
Describe how to treat missing values when doing the sorting.
orderedBy(FacetSortOrder) - Method in interface org.hibernate.search.query.dsl.FacetParameterContext
Deprecated.
 
org.hibernate.search.annotations - package org.hibernate.search.annotations
 
org.hibernate.search.backend - package org.hibernate.search.backend
 
org.hibernate.search.batchindexing - package org.hibernate.search.batchindexing
 
org.hibernate.search.engine - package org.hibernate.search.engine
 
org.hibernate.search.query - package org.hibernate.search.query
 
org.hibernate.search.query.dsl - package org.hibernate.search.query.dsl
Provide a domain specific language to write Lucene queries and create faceting requests.
org.hibernate.search.query.dsl.sort - package org.hibernate.search.query.dsl.sort
 
org.hibernate.search.query.engine.spi - package org.hibernate.search.query.engine.spi
 
org.hibernate.search.query.facet - package org.hibernate.search.query.facet
This package contains the classes for the public faceting API.
org.hibernate.search.scope.spi - package org.hibernate.search.scope.spi
 
org.hibernate.search.spatial - package org.hibernate.search.spatial
 
org.hibernate.search.spi - package org.hibernate.search.spi
 
org.hibernate.search.util - package org.hibernate.search.util
 
overridesForField(String, String) - Method in interface org.hibernate.search.query.dsl.EntityContext
Deprecated.
See the deprecation note on QueryBuilder. Also, analyzer overrides are done on a per-predicate basis in Hibernate Search 6. See MatchPredicateOptionsStep.analyzer(String), CommonQueryStringPredicateOptionsStep.analyzer(String), etc.

P

PERSISTENCE_CONTEXT - Enum constant in enum org.hibernate.search.query.ObjectLookupMethod
Deprecated.
Check whether an object is already in the persistence context before initializing it
phrase() - Method in interface org.hibernate.search.query.dsl.QueryBuilder
Deprecated.
See the javadoc of this class for how to create predicates in Hibernate Search 6. The equivalent predicate in Hibernate Search 6 is SearchPredicateFactory.phrase().
PhraseContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
PhraseMatchingContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
PhraseTermination - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
PRECISION_STEP_DEFAULT - Static variable in annotation type org.hibernate.search.annotations.NumericField
Deprecated.
Default precision step, mimicking Lucene's default precision step value.
precisionStep() - Element in annotation type org.hibernate.search.annotations.NumericField
Deprecated.
 
predicate() - Method in interface org.hibernate.search.scope.spi.V5MigrationSearchScope
Deprecated.
 
prefix() - Element in annotation type org.hibernate.search.annotations.IndexedEmbedded
Deprecated.
Field name prefix.
projection() - Method in interface org.hibernate.search.scope.spi.V5MigrationSearchScope
Deprecated.
 
projection(String...) - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
Defines the Lucene field names projected and returned in a query result Each field is converted back to it's object representation, an Object[] being returned for each "row" (similar to an HQL or a Criteria API projection).
ProjectionConstants - Interface in org.hibernate.search.engine
Deprecated.
Instead of using Hibernate Search 5 APIs, get a org.hibernate.search.mapper.orm.session.SearchSession using org.hibernate.search.mapper.orm.Search#session(org.hibernate.Session), create a SearchQuery with org.hibernate.search.mapper.orm.session.SearchSession#search(Class), and define your projections using SearchQuerySelectStep.select(Function). Refer to the migration guide for more information.

Q

qualify(String, String) - Static method in class org.hibernate.search.util.StringHelper
Deprecated.
 
QUERY - Enum constant in enum org.hibernate.search.query.DatabaseRetrievalMethod
Deprecated.
Use a criteria query to load the objects.
QueryBuilder - Interface in org.hibernate.search.query.dsl
Deprecated.
Instead of using Hibernate Search 5 APIs, get a org.hibernate.search.mapper.orm.session.SearchSession using org.hibernate.search.mapper.orm.Search#session(org.hibernate.Session), create a SearchQuery with org.hibernate.search.mapper.orm.session.SearchSession#search(Class), and define your predicates using SearchQueryWhereStep.where(Function). Refer to the migration guide for more information.
QueryContextBuilder - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
QueryCustomization<T> - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.

R

range() - Method in interface org.hibernate.search.query.dsl.FacetContinuationContext
Deprecated.
Start building a range request
range() - Method in interface org.hibernate.search.query.dsl.QueryBuilder
Deprecated.
See the javadoc of this class for how to create predicates in Hibernate Search 6. The equivalent predicate in Hibernate Search 6 is SearchPredicateFactory.range().
RANGE_DEFINITION_ORDER - Enum constant in enum org.hibernate.search.query.facet.FacetSortOrder
Deprecated.
The order in which ranges were defined.
RangeContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
RangeFacet<T> - Interface in org.hibernate.search.query.facet
Deprecated.
See the deprecation note on FacetContext.
RangeMatchingContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
RangeMatchingContext.FromRangeContext<T> - Interface in org.hibernate.search.query.dsl
Deprecated.
 
RangeTerminationExcludable - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
resolution() - Element in annotation type org.hibernate.search.annotations.CalendarBridge
Deprecated.
 
resolution() - Element in annotation type org.hibernate.search.annotations.DateBridge
Deprecated.
 
Resolution - Enum in org.hibernate.search.annotations
Deprecated.
DateBridge/CalendarBridge are no longer available in Hibernate Search 6. See the javadoc of DateBridge or CalendarBridge.

S

scope(Class<?>...) - Method in interface org.hibernate.search.spi.SearchIntegrator
Deprecated.
 
SCORE - Static variable in interface org.hibernate.search.engine.ProjectionConstants
Deprecated.
See the javadoc of this class for how to create projections in Hibernate Search 6. The equivalent projection in Hibernate Search 6 is SearchProjectionFactory.score().
scroll(int) - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
Execute the Lucene query continuously, as a SearchScroll.
search(V5MigrationSearchScope) - Method in interface org.hibernate.search.query.engine.spi.V5MigrationSearchSession
Deprecated.
 
SearchIntegrator - Interface in org.hibernate.search.spi
Deprecated.
This class will be removed without replacement. Use actual API instead.
SECOND - Enum constant in enum org.hibernate.search.annotations.Resolution
Deprecated.
 
SECOND_LEVEL_CACHE - Enum constant in enum org.hibernate.search.query.ObjectLookupMethod
Deprecated.
Check whether an object is already either in the persistence context or in the second level cache before loading it.
sentence(String) - Method in interface org.hibernate.search.query.dsl.PhraseMatchingContext
Deprecated.
Sentence to match.
setSpatialParameters(Coordinates, String) - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
setSpatialParameters.
should(Query) - Method in interface org.hibernate.search.query.dsl.BooleanJunction
Deprecated.
The boolean query results should match the subquery
simpleQueryString() - Method in interface org.hibernate.search.query.dsl.QueryBuilder
Deprecated.
See the javadoc of this class for how to create predicates in Hibernate Search 6. The equivalent predicate in Hibernate Search 6 is SearchPredicateFactory.simpleQueryString().
SimpleQueryStringContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
SimpleQueryStringDefinitionTermination - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
SimpleQueryStringMatchingContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
SimpleQueryStringTermination - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
SKIP - Enum constant in enum org.hibernate.search.query.ObjectLookupMethod
Deprecated.
Skip checking (default)
sort() - Method in interface org.hibernate.search.query.dsl.QueryBuilder
Deprecated.
See the deprecation note on SortContext.
sort() - Method in interface org.hibernate.search.scope.spi.V5MigrationSearchScope
Deprecated.
 
sort(Sort) - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
Lets Lucene sort the results.
SortableField - Annotation Type in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's field annotations (GenericField, KeywordField, ...) and enable sorts with @GenericField(sortable = Sortable.YES) instead. Note that FullTextField cannot be marked as sortable, but you can define a KeywordField alongside your FullTextField, with a different name, and that field can be marked as sortable.
SortableFields - Annotation Type in org.hibernate.search.annotations
Deprecated.
See the deprecation note on SortableField
SortAdditionalSortFieldContext - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
SortContext - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
Instead of using Hibernate Search 5 APIs, get a org.hibernate.search.mapper.orm.session.SearchSession using org.hibernate.search.mapper.orm.Search#session(org.hibernate.Session), create a SearchQuery with org.hibernate.search.mapper.orm.session.SearchSession#search(Class), and define your sorts using SearchQueryOptionsStep.sort(Function). Refer to the migration guide for more information.
SortDistanceFieldAndReferenceContext - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
SortDistanceFieldContext - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
SortDistanceNoFieldContext - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
SortFieldContext - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
sortFirst() - Method in interface org.hibernate.search.query.dsl.sort.SortMissingValueContext
Deprecated.
Put documents with missing values first in the sorting.
sortLast() - Method in interface org.hibernate.search.query.dsl.sort.SortMissingValueContext
Deprecated.
Put documents with missing values last in the sorting.
SortLatLongContext - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
SortMissingValueContext<T> - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
SortNativeContext - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
SortOrder<T> - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
SortOrderTermination - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
SortScoreContext - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
SortTermination - Interface in org.hibernate.search.query.dsl.sort
Deprecated.
See the deprecation note on SortContext.
spatial() - Method in interface org.hibernate.search.query.dsl.QueryBuilder
Deprecated.
See the javadoc of this class for how to create predicates in Hibernate Search 6. The equivalent predicate in Hibernate Search 6 is SearchPredicateFactory.spatial().
Spatial - Annotation Type in org.hibernate.search.annotations
Deprecated.
If the latitude/longitude of the element annotated with Spatial are mutable, annotate these properties annotated with Latitude/Longitude, and use GeoPointBinding instead of Spatial. If the latitude/longitude of the element annotated with Spatial are immutable, you can alternatively implement GeoPoint instead of Coordinates and simply use GenericField on properties of this type.
SPATIAL_DISTANCE - Static variable in interface org.hibernate.search.engine.ProjectionConstants
Deprecated.
See the javadoc of this class for how to create projections in Hibernate Search 6. The equivalent projection in Hibernate Search 6 is SearchProjectionFactory.distance(String, GeoPoint).
SpatialContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
SpatialMatchingContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
Spatials - Annotation Type in org.hibernate.search.annotations
Deprecated.
See the deprecation note on Spatial.
SpatialTermination - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
store() - Element in annotation type org.hibernate.search.annotations.Field
Deprecated.
 
store() - Element in annotation type org.hibernate.search.annotations.Spatial
Deprecated.
 
Store - Enum in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's field annotations (GenericField, KeywordField, FullTextField, ...) and enable/disable storage with @GenericField(projectable = Projectable.YES) instead.
StringHelper - Class in org.hibernate.search.util
Deprecated.
Will be removed without replacement.

T

targetElement() - Element in annotation type org.hibernate.search.annotations.IndexedEmbedded
Deprecated.
Overrides the target type of an association, in case a collection overrides the type of the collection generics.
targetTypes() - Method in interface org.hibernate.search.scope.spi.V5MigrationSearchScope
Deprecated.
 
TermContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
TermFuzzy - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
Termination<T> - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
TermMatchingContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
TermTermination - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
termVector() - Element in annotation type org.hibernate.search.annotations.Field
Deprecated.
 
TermVector - Enum in org.hibernate.search.annotations
Deprecated.
Use Hibernate Search 6's full-text field annotation (FullTextField) and enable/disable term vectors with @FullTextField(termVector = TermVector.YES) instead.
THIS - Static variable in interface org.hibernate.search.engine.ProjectionConstants
Deprecated.
See the javadoc of this class for how to create projections in Hibernate Search 6. The equivalent projection in Hibernate Search 6 is SearchProjectionFactory.entity().
to(T) - Method in interface org.hibernate.search.query.dsl.FacetRangeLimitContext
Deprecated.
 
to(T) - Method in interface org.hibernate.search.query.dsl.RangeMatchingContext.FromRangeContext
Deprecated.
 
toGeoPoint(Coordinates) - Static method in interface org.hibernate.search.spatial.Coordinates
Deprecated.
 
tokenizedTermValues(Analyzer, String, String) - Static method in class org.hibernate.search.util.AnalyzerUtils
Deprecated.
 
transform(Object[], String[]) - Method in interface org.hibernate.search.query.engine.spi.TupleTransformer
Deprecated.
 
truncateAfter(long, TimeUnit) - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
tupleTransformer(TupleTransformer) - Method in interface org.hibernate.search.query.engine.spi.HSQuery
Deprecated.
 
TupleTransformer - Interface in org.hibernate.search.query.engine.spi
Deprecated.
This class will be removed without replacement. Use actual API instead.

U

Unit - Enum in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
use(Object) - Method in interface org.hibernate.search.query.dsl.sort.SortMissingValueContext
Deprecated.
When documents are missing a value on the sort field, use the given value instead.

V

V5MigrationSearchScope - Interface in org.hibernate.search.scope.spi
Deprecated.
This class will be removed without replacement. Use actual API instead.
V5MigrationSearchSession<LOS> - Interface in org.hibernate.search.query.engine.spi
Deprecated.
This class will be removed without replacement. Use actual API instead.
value() - Element in annotation type org.hibernate.search.annotations.Facets
Deprecated.
 
value() - Element in annotation type org.hibernate.search.annotations.Fields
Deprecated.
 
value() - Element in annotation type org.hibernate.search.annotations.NumericFields
Deprecated.
 
value() - Element in annotation type org.hibernate.search.annotations.SortableFields
Deprecated.
 
value() - Element in annotation type org.hibernate.search.annotations.Spatials
Deprecated.
 
valueOf(String) - Static method in enum org.hibernate.search.annotations.Analyze
Deprecated.
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.hibernate.search.annotations.Index
Deprecated.
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.hibernate.search.annotations.Norms
Deprecated.
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.hibernate.search.annotations.Resolution
Deprecated.
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.hibernate.search.annotations.Store
Deprecated.
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.hibernate.search.annotations.TermVector
Deprecated.
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.hibernate.search.query.DatabaseRetrievalMethod
Deprecated.
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.hibernate.search.query.dsl.Unit
Deprecated.
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.hibernate.search.query.facet.FacetSortOrder
Deprecated.
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.hibernate.search.query.ObjectLookupMethod
Deprecated.
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.hibernate.search.annotations.Analyze
Deprecated.
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.hibernate.search.annotations.Index
Deprecated.
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.hibernate.search.annotations.Norms
Deprecated.
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.hibernate.search.annotations.Resolution
Deprecated.
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.hibernate.search.annotations.Store
Deprecated.
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.hibernate.search.annotations.TermVector
Deprecated.
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.hibernate.search.query.DatabaseRetrievalMethod
Deprecated.
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.hibernate.search.query.dsl.Unit
Deprecated.
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.hibernate.search.query.facet.FacetSortOrder
Deprecated.
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.hibernate.search.query.ObjectLookupMethod
Deprecated.
Returns an array containing the constants of this enum type, in the order they are declared.

W

wildcard() - Method in interface org.hibernate.search.query.dsl.TermContext
Deprecated.
Treat the query as a wildcard query which means: '?' represents any single character '*' represents any character sequence For faster results, it is recommended that the query text does not start with '?' or '*'.
WildcardContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
WITH_OFFSETS - Enum constant in enum org.hibernate.search.annotations.TermVector
Deprecated.
Store the term vector + Token offset information
WITH_POSITION_OFFSETS - Enum constant in enum org.hibernate.search.annotations.TermVector
Deprecated.
Store the term vector + Token position and offset information
WITH_POSITIONS - Enum constant in enum org.hibernate.search.annotations.TermVector
Deprecated.
Store the term vector + token position information
withAndAsDefaultOperator() - Method in interface org.hibernate.search.query.dsl.SimpleQueryStringMatchingContext
Deprecated.
Define the default operator as AND.
withConstantScore() - Method in interface org.hibernate.search.query.dsl.QueryCustomization
Deprecated.
All results matching the query have a constant score equals to the boost FIXME is that true?
withEditDistanceUpTo(int) - Method in interface org.hibernate.search.query.dsl.FuzzyContext
Deprecated.
Maximum value of the edit distance.
within(double, Unit) - Method in interface org.hibernate.search.query.dsl.SpatialMatchingContext
Deprecated.
 
WithinContext - Interface in org.hibernate.search.query.dsl
Deprecated.
See the deprecation note on QueryBuilder.
WithinContext.LongitudeContext - Interface in org.hibernate.search.query.dsl
Deprecated.
 
withPrefixLength(int) - Method in interface org.hibernate.search.query.dsl.FuzzyContext
Deprecated.
Size of the prefix ignored by the fuzzyness.
withPrefixLength(int) - Method in interface org.hibernate.search.query.dsl.TermFuzzy
Deprecated.
Size of the prefix ignored by the fuzzyness.
withSlop(int) - Method in interface org.hibernate.search.query.dsl.PhraseContext
Deprecated.
Sets the number of other words permitted between words in query phrase.
withThreshold(float) - Method in interface org.hibernate.search.query.dsl.TermFuzzy
Deprecated.
Threshold above which two terms are considered similar enough.

Y

YEAR - Enum constant in enum org.hibernate.search.annotations.Resolution
Deprecated.
 
YES - Enum constant in enum org.hibernate.search.annotations.Analyze
Deprecated.
Analyze the field content
YES - Enum constant in enum org.hibernate.search.annotations.Index
Deprecated.
Index the field value.
YES - Enum constant in enum org.hibernate.search.annotations.Norms
Deprecated.
Store norms
YES - Enum constant in enum org.hibernate.search.annotations.Store
Deprecated.
stores the value in the index
YES - Enum constant in enum org.hibernate.search.annotations.TermVector
Deprecated.
Store term vectors.
A B C D E F G H I J K L M N O P Q R S T U V W Y 
All Classes and Interfaces|All Packages|Constant Field Values