Sentiment クラス

  • java.lang.Object
    • com.microsoft.azure.cognitiveservices.language.luis.runtime.models.Sentiment

public class Sentiment

入力発話のセンチメント。

メソッドの概要

修飾子と型 メソッドと説明
String label()

ラベル値を取得します。

Double score()

スコア値を取得します。

Sentiment withLabel(String label)

ラベルの値を設定します。

Sentiment withScore(Double score)

スコア値を設定します。

メソッドの詳細

label

public String label()

ラベル値を取得します。

Returns:

ラベルの値

score

public Double score()

スコア値を取得します。

Returns:

スコア値

withLabel

public Sentiment withLabel(String label)

ラベルの値を設定します。

Parameters:

label - 設定するラベル値

Returns:

Sentiment オブジェクト自体。

withScore

public Sentiment withScore(Double score)

スコア値を設定します。

Parameters:

score - 設定するスコア値

Returns:

Sentiment オブジェクト自体。

適用対象