Package | Description |
---|---|
org.hibernate.search.query.dsl |
Provide a domain specific language to write Lucene queries and create faceting requests.
|
org.hibernate.search.query.dsl.impl |
Modifier and Type | Method and Description |
---|---|
SimpleQueryStringMatchingContext |
SimpleQueryStringMatchingContext.andField(String field)
Field the query is executed on.
|
SimpleQueryStringMatchingContext |
SimpleQueryStringMatchingContext.andFields(String... field)
Fields the query is executed on.
|
SimpleQueryStringMatchingContext |
SimpleQueryStringMatchingContext.boostedTo(float boost)
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)
|
SimpleQueryStringMatchingContext |
SimpleQueryStringContext.onField(String field) |
SimpleQueryStringMatchingContext |
SimpleQueryStringContext.onFields(String field,
String... fields) |
Modifier and Type | Class and Description |
---|---|
class |
ConnectedSimpleQueryStringMatchingContext |
Modifier and Type | Method and Description |
---|---|
SimpleQueryStringMatchingContext |
ConnectedSimpleQueryStringMatchingContext.andField(String field) |
SimpleQueryStringMatchingContext |
ConnectedSimpleQueryStringMatchingContext.andFields(String... fields) |
SimpleQueryStringMatchingContext |
ConnectedSimpleQueryStringMatchingContext.boostedTo(float boost) |
Copyright © 2006–2017 Hibernate. All rights reserved.