Compartir a través de


ScoringFunction Class

  • java.lang.Object
    • com.azure.search.documents.indexes.models.ScoringFunction

Implements

public abstract class ScoringFunction
implements JsonSerializable<ScoringFunction>

Base type for functions that can modify document scores during ranking.

Constructor Summary

Constructor Description
ScoringFunction(String fieldName, double boost)

Creates an instance of ScoringFunction class.

Method Summary

Modifier and Type Method and Description
static ScoringFunction fromJson(JsonReader jsonReader)

Reads an instance of ScoringFunction from the JsonReader.

double getBoost()

Get the boost property: A multiplier for the raw score.

String getFieldName()

Get the fieldName property: The name of the field used as input to the scoring function.

ScoringFunctionInterpolation getInterpolation()

Get the interpolation property: A value indicating how boosting will be interpolated across document scores; defaults to "Linear".

ScoringFunction setInterpolation(ScoringFunctionInterpolation interpolation)

Set the interpolation property: A value indicating how boosting will be interpolated across document scores; defaults to "Linear".

JsonWriter toJson(JsonWriter jsonWriter)

Methods inherited from java.lang.Object

Constructor Details

ScoringFunction

public ScoringFunction(String fieldName, double boost)

Creates an instance of ScoringFunction class.

Parameters:

fieldName - the fieldName value to set.
boost - the boost value to set.

Method Details

fromJson

public static ScoringFunction fromJson(JsonReader jsonReader)

Reads an instance of ScoringFunction from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of ScoringFunction if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If the deserialized JSON object was missing any required properties or the polymorphic discriminator.

getBoost

public double getBoost()

Get the boost property: A multiplier for the raw score. Must be a positive number not equal to 1.0.

Returns:

the boost value.

getFieldName

public String getFieldName()

Get the fieldName property: The name of the field used as input to the scoring function.

Returns:

the fieldName value.

getInterpolation

public ScoringFunctionInterpolation getInterpolation()

Get the interpolation property: A value indicating how boosting will be interpolated across document scores; defaults to "Linear".

Returns:

the interpolation value.

setInterpolation

public ScoringFunction setInterpolation(ScoringFunctionInterpolation interpolation)

Set the interpolation property: A value indicating how boosting will be interpolated across document scores; defaults to "Linear".

Parameters:

interpolation - the interpolation value to set.

Returns:

the ScoringFunction object itself.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

Applies to