Uses of Enum
org.hibernate.search.engine.search.common.ValueConvert
Package
Description
-
Uses of ValueConvert in org.hibernate.search.engine.search.aggregation.dsl
Modifier and TypeMethodDescription<F> RangeAggregationRangeStep<?,
PDF, F> RangeAggregationFieldStep.field
(String fieldPath, Class<F> type, ValueConvert convert) Target the given field in the range aggregation.<F> TermsAggregationOptionsStep<?,
PDF, F, Map<F, Long>> TermsAggregationFieldStep.field
(String fieldPath, Class<F> type, ValueConvert convert) Target the given field in the terms aggregation. -
Uses of ValueConvert in org.hibernate.search.engine.search.aggregation.spi
Modifier and TypeMethodDescription<K> RangeAggregationBuilder<K>
RangeAggregationBuilder.TypeSelector.type
(Class<K> expectedType, ValueConvert convert) <K> TermsAggregationBuilder<K>
TermsAggregationBuilder.TypeSelector.type
(Class<K> expectedType, ValueConvert convert) -
Uses of ValueConvert in org.hibernate.search.engine.search.common
Modifier and TypeMethodDescriptionstatic ValueConvert
Returns the enum constant of this type with the specified name.static ValueConvert[]
ValueConvert.values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ValueConvert in org.hibernate.search.engine.search.common.spi
Modifier and TypeMethodDescriptiondefault DslConverter<?,
String> SearchIndexIdentifierContext.dslConverter
(ValueConvert convert) default DslConverter<?,
F> SearchIndexValueFieldTypeContext.dslConverter
(ValueConvert convert) default ProjectionConverter<F,
?> SearchIndexValueFieldTypeContext.projectionConverter
(ValueConvert convert) -
Uses of ValueConvert in org.hibernate.search.engine.search.predicate.dsl
Modifier and TypeMethodDescriptiondefault N
RangePredicateMatchingStep.atLeast
(Object lowerBoundValue, ValueConvert convert) Require at least one of the targeted fields to be "greater than or equal to" the given value, with no limit as to how high it can be.default N
RangePredicateMatchingStep.atMost
(Object upperBoundValue, ValueConvert convert) Require at least one of the targeted fields to be "lesser than or equal to" the given value, with no limit as to how low it can be.default N
RangePredicateMatchingStep.between
(Object lowerBound, Object upperBound, ValueConvert convert) Require at least one of the targeted fields to be in the range defined by the given bounds.default N
RangePredicateMatchingStep.greaterThan
(Object lowerBoundValue, ValueConvert convert) Require at least one of the targeted fields to be "strictly greater than" the given value, with no limit as to how high it can be.default N
RangePredicateMatchingStep.lessThan
(Object upperBoundValue, ValueConvert convert) Require at least one of the targeted fields to be "lesser than" the given value, with no limit as to how low it can be.MatchIdPredicateMatchingStep.matching
(Object value, ValueConvert convert) Target the identifier with the given id.MatchPredicateMatchingStep.matching
(Object value, ValueConvert convert) Require at least one of the targeted fields to match the given value.TermsPredicateMatchingStep.matchingAll
(Collection<?> terms, ValueConvert convert) Require at least one of the targeted fields to match all of the provided terms.default N
MatchIdPredicateMatchingStep.matchingAny
(Collection<?> values, ValueConvert convert) Target the identifiers matching any of the values in a collection.TermsPredicateMatchingStep.matchingAny
(Collection<?> terms, ValueConvert convert) Require at least one of the targeted fields to match any of the provided terms.RangePredicateMatchingStep.range
(Range<?> range, ValueConvert convert) Require at least one of the targeted fields to be in the given range. -
Uses of ValueConvert in org.hibernate.search.engine.search.predicate.spi
Modifier and TypeMethodDescriptionvoid
TermsPredicateBuilder.matchingAll
(Collection<?> terms, ValueConvert convert) void
TermsPredicateBuilder.matchingAny
(Collection<?> terms, ValueConvert convert) void
RangePredicateBuilder.range
(Range<?> range, ValueConvert convertLowerBound, ValueConvert convertUpperBound) void
MatchIdPredicateBuilder.value
(Object value, ValueConvert valueConvert) void
MatchPredicateBuilder.value
(Object value, ValueConvert convert) -
Uses of ValueConvert in org.hibernate.search.engine.search.projection.definition.spi
Modifier and TypeFieldDescriptionprotected final ValueConvert
FieldProjectionDefinition.valueConvert
ModifierConstructorDescriptionMultiValued
(String fieldPath, Class<F> fieldType, ValueConvert valueConvert) SingleValued
(String fieldPath, Class<F> fieldType, ValueConvert valueConvert) -
Uses of ValueConvert in org.hibernate.search.engine.search.projection.dsl
Modifier and TypeMethodDescription<T> FieldProjectionValueStep<?,
T> SearchProjectionFactory.field
(String fieldPath, Class<T> type, ValueConvert convert) Project to the value of a field in the indexed document.SearchProjectionFactory.field
(String fieldPath, ValueConvert convert) Project to the value of a field in the indexed document, without specifying a type. -
Uses of ValueConvert in org.hibernate.search.engine.search.projection.dsl.spi
Modifier and TypeMethodDescription<T> FieldProjectionValueStep<?,
T> AbstractSearchProjectionFactory.field
(String fieldPath, Class<T> clazz, ValueConvert convert) AbstractSearchProjectionFactory.field
(String fieldPath, ValueConvert convert) -
Uses of ValueConvert in org.hibernate.search.engine.search.projection.spi
Modifier and TypeMethodDescription<T> FieldProjectionBuilder<T>
FieldProjectionBuilder.TypeSelector.type
(Class<T> expectedType, ValueConvert convert) -
Uses of ValueConvert in org.hibernate.search.engine.search.sort.dsl
Modifier and TypeMethodDescriptionFieldSortMissingValueBehaviorStep.use
(Object value, ValueConvert convert) When documents are missing a value on the sort field, use the given value instead. -
Uses of ValueConvert in org.hibernate.search.engine.search.sort.spi
Modifier and TypeMethodDescriptionvoid
FieldSortBuilder.missingAs
(Object value, ValueConvert convert) -
Uses of ValueConvert in org.hibernate.search.mapper.pojo.search.definition.binding.builtin