Package | Description |
---|---|
org.hibernate.search.engine.search.dsl.predicate |
Modifier and Type | Method and Description |
---|---|
static RangeBoundInclusion |
RangeBoundInclusion.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RangeBoundInclusion[] |
RangeBoundInclusion.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
SearchPredicateTerminalContext |
RangePredicateFieldSetContext.above(Object value,
RangeBoundInclusion inclusion)
Require at least one of the targeted fields to be "higher than" the given value,
with no limit as to how high it can be.
|
SearchPredicateTerminalContext |
RangePredicateFieldSetContext.below(Object value,
RangeBoundInclusion inclusion)
Require at least one of the targeted fields to be "lower than" the given value,
with no limit as to how low it can be.
|
RangePredicateFromContext |
RangePredicateFieldSetContext.from(Object value,
RangeBoundInclusion inclusion)
Require at least one of the targeted fields to be "higher than" the given value,
and "lower than" another value (to be provided in following calls).
|
SearchPredicateTerminalContext |
RangePredicateFromContext.to(Object value,
RangeBoundInclusion inclusion)
Require at least one of the targeted fields to be "lower than" the given value,
in addition to being "higher than" the value provided to the
former
call. |
Copyright © 2006-2018 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.