你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
ScoringParameter Class
- java.
lang. Object - com.
azure. search. documents. models. ScoringParameter
- com.
public final class ScoringParameter
Represents a parameter value to be used in scoring functions (for example, referencePointParameter).
Constructor Summary
Constructor | Description |
---|---|
ScoringParameter(String nameValuePair) |
Constructor to take name value pair string of Scoring |
ScoringParameter(String name, GeoPoint value) |
Initializes a new instance of the Scoring |
ScoringParameter(String name, List<String> values) |
Initializes a new instance of the Scoring |
Method Summary
Modifier and Type | Method and Description |
---|---|
String |
getName()
Gets the name of the scoring parameter. |
List<String> |
getValues()
Gets the values of the scoring parameter. |
String |
toString()
Covert ScoringParameter to string. |
Methods inherited from java.lang.Object
Constructor Details
ScoringParameter
public ScoringParameter(String nameValuePair)
Constructor to take name value pair string of ScoringParameter. Name and values are separated by dash, and values are separared by comma.
Parameters:
ScoringParameter
public ScoringParameter(String name, GeoPoint value)
Initializes a new instance of the ScoringParameter class with the given name and GeographyPoint value.
Parameters:
ScoringParameter
public ScoringParameter(String name, List
Initializes a new instance of the ScoringParameter class with the given name and string values.
Parameters:
Method Details
getName
public String getName()
Gets the name of the scoring parameter.
Returns:
getValues
public List
Gets the values of the scoring parameter.
Returns:
toString
public String toString()
Covert ScoringParameter to string.
Overrides:
ScoringParameter.toString()Returns: