Uses of Class
org.hibernate.search.engine.search.common.ValueConvert
-
-
Uses of ValueConvert in org.hibernate.search.engine.search.aggregation.dsl
Methods in org.hibernate.search.engine.search.aggregation.dsl with parameters of type ValueConvert Modifier and Type Method Description <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
Methods in org.hibernate.search.engine.search.aggregation.spi with parameters of type ValueConvert Modifier and Type Method Description <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
Methods in org.hibernate.search.engine.search.common that return ValueConvert Modifier and Type Method Description static ValueConvertValueConvert. valueOf(String name)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
Methods in org.hibernate.search.engine.search.common.spi with parameters of type ValueConvert Modifier and Type Method Description default 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
Methods in org.hibernate.search.engine.search.predicate.dsl with parameters of type ValueConvert Modifier and Type Method Description default NRangePredicateMatchingStep. 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 NRangePredicateMatchingStep. 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 NRangePredicateMatchingStep. 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 NRangePredicateMatchingStep. 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 NRangePredicateMatchingStep. 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.NMatchIdPredicateMatchingStep. matching(Object value, ValueConvert convert)Target the identifier with the given id.NMatchPredicateMatchingStep. matching(Object value, ValueConvert convert)Require at least one of the targeted fields to match the given value.NTermsPredicateMatchingStep. matchingAll(Collection<?> terms, ValueConvert convert)Require at least one of the targeted fields to match all of the provided terms.default NMatchIdPredicateMatchingStep. matchingAny(Collection<?> values, ValueConvert convert)Target the identifiers matching any of the values in a collection.NTermsPredicateMatchingStep. matchingAny(Collection<?> terms, ValueConvert convert)Require at least one of the targeted fields to match any of the provided terms.NRangePredicateMatchingStep. 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
Methods in org.hibernate.search.engine.search.predicate.spi with parameters of type ValueConvert Modifier and Type Method Description voidTermsPredicateBuilder. matchingAll(Collection<?> terms, ValueConvert convert)voidTermsPredicateBuilder. matchingAny(Collection<?> terms, ValueConvert convert)voidRangePredicateBuilder. range(Range<?> range, ValueConvert convertLowerBound, ValueConvert convertUpperBound)voidMatchIdPredicateBuilder. value(Object value, ValueConvert valueConvert)voidMatchPredicateBuilder. value(Object value, ValueConvert convert) -
Uses of ValueConvert in org.hibernate.search.engine.search.projection.dsl
Methods in org.hibernate.search.engine.search.projection.dsl with parameters of type ValueConvert Modifier and Type Method Description <T> FieldProjectionValueStep<?,T>SearchProjectionFactory. field(String fieldPath, Class<T> type, ValueConvert convert)Project to the value of a field in the indexed document.FieldProjectionValueStep<?,Object>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
Methods in org.hibernate.search.engine.search.projection.dsl.spi with parameters of type ValueConvert Modifier and Type Method Description <T> FieldProjectionValueStep<?,T>AbstractSearchProjectionFactory. field(String fieldPath, Class<T> clazz, ValueConvert convert)FieldProjectionValueStep<?,Object>AbstractSearchProjectionFactory. field(String fieldPath, ValueConvert convert) -
Uses of ValueConvert in org.hibernate.search.engine.search.projection.spi
Methods in org.hibernate.search.engine.search.projection.spi with parameters of type ValueConvert Modifier and Type Method Description <T> FieldProjectionBuilder<T>FieldProjectionBuilder.TypeSelector. type(Class<T> expectedType, ValueConvert convert) -
Uses of ValueConvert in org.hibernate.search.engine.search.sort.dsl
Methods in org.hibernate.search.engine.search.sort.dsl with parameters of type ValueConvert Modifier and Type Method Description NFieldSortMissingValueBehaviorStep. 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
Methods in org.hibernate.search.engine.search.sort.spi with parameters of type ValueConvert Modifier and Type Method Description voidFieldSortBuilder. missingAs(Object value, ValueConvert convert)
-