public interface MatchPredicateMatchingStep
| Modifier and Type | Method and Description |
|---|---|
default MatchPredicateOptionsStep |
matching(Object value)
Require at least one of the targeted fields to match the given value.
|
MatchPredicateOptionsStep |
matching(Object value,
DslConverter dslConverter)
Require at least one of the targeted fields to match the given value.
|
default MatchPredicateOptionsStep matching(Object value)
This method will apply DSL converters to value before Hibernate Search attempts to interpret it as a field value.
See DslConverter.ENABLED.
value - The value to match.
The signature of this method defines this parameter as an Object,
but a specific type is expected depending on the targeted field.
See DslConverter.ENABLED for more information.matching(Object, DslConverter)MatchPredicateOptionsStep matching(Object value, DslConverter dslConverter)
value - The value to match.
The signature of this method defines this parameter as an Object,
but a specific type is expected depending on the targeted field and on the dslConverter parameter.
See DslConverter for more information.dslConverter - Controls how the value should be converted before Hibernate Search attempts to interpret it as a field value.
See DslConverter for more information.DslConverterCopyright © 2006-2019 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.