N - The type of the next step.public interface MatchPredicateMatchingStep<N extends MatchPredicateOptionsStep<?>>
| Modifier and Type | Method and Description |
|---|---|
default N |
matching(Object value)
Require at least one of the targeted fields to match the given value.
|
N |
matching(Object value,
ValueConvert convert)
Require at least one of the targeted fields to match the given value.
|
default N matching(Object value)
This method will apply DSL converters to value before Hibernate Search attempts to interpret it as a field value.
See ValueConvert.YES.
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 ValueConvert.YES for more information.matching(Object, ValueConvert)N matching(Object value, ValueConvert convert)
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 ValueConvert for more information.convert - Controls how the value should be converted before Hibernate Search attempts to interpret it as a field value.
See ValueConvert for more information.ValueConvertCopyright © 2006-2019 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.