@FunctionalInterface public interface SingleValueBinding<T extends com.querydsl.core.types.Path<? extends S>,S>
SingleValueBinding
creates a Predicate
out of given Path
and value. Used for specific
parameter treatment in QuerydslBindings
.Modifier and Type | Method and Description |
---|---|
com.querydsl.core.types.Predicate |
bind(T path,
S value)
Returns the predicate to be applied to the given
Path for the given value. |
com.querydsl.core.types.Predicate bind(T path, S value)
Path
for the given value. The given value will be the
first the first one provided for the given path and converted into the expected type.path
- Path
to the property. Will not be null.value
- the value that should be bound. Will not be null.Predicate
.Copyright © 2011–2020 Pivotal Software, Inc.. All rights reserved.