RangePredicateMatchingStep instead.@Deprecated public interface RangePredicateLimitsStep
| Modifier and Type | Method and Description |
|---|---|
default RangePredicateLastLimitExcludeStep |
above(Object value)
Deprecated.
|
RangePredicateLastLimitExcludeStep |
above(Object value,
ValueConvert convert)
Deprecated.
|
default RangePredicateLastLimitExcludeStep |
below(Object value)
Deprecated.
|
RangePredicateLastLimitExcludeStep |
below(Object value,
ValueConvert convert)
Deprecated.
|
default RangePredicateFromToStep |
from(Object value)
Deprecated.
Use
RangePredicateMatchingStep.between(Object, Object) instead. |
RangePredicateFromToStep |
from(Object value,
ValueConvert convert)
Deprecated.
|
@Deprecated default RangePredicateFromToStep from(Object value)
RangePredicateMatchingStep.between(Object, Object) instead.
This syntax is essentially used like this: .from( lowerBound ).to( upperBound ).
value - The lower bound of the range. May be null, in which case the range has no lower bound
and the upper bound (passed to RangePredicateToStep.to(Object)) must not be null.
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.
The lower bound is included in the range by default,
but can be excluded by calling RangePredicateLimitExcludeStep.excludeLimit() on the next step.@Deprecated RangePredicateFromToStep from(Object value, ValueConvert convert)
RangePredicateMatchingStep.range(Range, ValueConvert) instead.
This syntax is essentially used like this: .from( lowerBound ).to( upperBound ).
value - The lower bound of the range. May be null, in which case the range has no lower bound
and the upper bound (passed to RangePredicateToStep.to(Object)) must not be null.
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.
The lower bound is included in the range by default,
but can be excluded by calling RangePredicateLimitExcludeStep.excludeLimit() on the next step.convert - Controls how the value should be converted before Hibernate Search attempts to interpret it as a field value.
See ValueConvert for more information.@Deprecated default RangePredicateLastLimitExcludeStep above(Object value)
RangePredicateMatchingStep.atLeast(Object)
or RangePredicateMatchingStep.greaterThan(Object) instead.value - The lower bound of the range. Must not be null.
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.
The lower bound is included in the range by default,
but can be excluded by calling RangePredicateLimitExcludeStep.excludeLimit() on the next step.@Deprecated RangePredicateLastLimitExcludeStep above(Object value, ValueConvert convert)
RangePredicateMatchingStep.atLeast(Object, ValueConvert)
or RangePredicateMatchingStep.greaterThan(Object, ValueConvert) instead.value - The lower bound of the range. Must not be null.
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.
The lower bound is included in the range by default,
but can be excluded by calling RangePredicateLimitExcludeStep.excludeLimit() on the next step.convert - Controls how the value should be converted before Hibernate Search attempts to interpret it as a field value.
See ValueConvert for more information.@Deprecated default RangePredicateLastLimitExcludeStep below(Object value)
RangePredicateMatchingStep.atMost(Object)
or RangePredicateMatchingStep.lessThan(Object) instead.value - The upper bound of the range. Must not be null.
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.
The upper bound is included in the range by default,
but can be excluded by calling RangePredicateLimitExcludeStep.excludeLimit() on the next step.@Deprecated RangePredicateLastLimitExcludeStep below(Object value, ValueConvert convert)
RangePredicateMatchingStep.atMost(Object, ValueConvert)
or RangePredicateMatchingStep.lessThan(Object, ValueConvert) instead.value - The upper bound of the range. Must not be null.
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.
The upper bound is included in the range by default,
but can be excluded by calling RangePredicateLimitExcludeStep.excludeLimit() on the next step.convert - Controls how the value should be converted before Hibernate Search attempts to interpret it as a field value.
See ValueConvert for more information.Copyright © 2006-2019 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.