次の方法で共有


ExampleLabelObject クラス

  • java.lang.Object
    • com.microsoft.azure.cognitiveservices.language.luis.authoring.models.ExampleLabelObject

public class ExampleLabelObject

ラベル付けされた発話の例。

メソッドの概要

修飾子と型 メソッドと説明
List<EntityLabelObject> entityLabels()

entityLabels 値を取得します。

String intentName()

intentName 値を取得します。

String text()

テキスト値を取得します。

ExampleLabelObject withEntityLabels(List<EntityLabelObject> entityLabels)

entityLabels 値を設定します。

ExampleLabelObject withIntentName(String intentName)

intentName 値を設定します。

ExampleLabelObject withText(String text)

テキスト値を設定します。

メソッドの詳細

entityLabels

public List entityLabels()

entityLabels 値を取得します。

Returns:

entityLabels 値

intentName

public String intentName()

intentName 値を取得します。

Returns:

intentName 値

text

public String text()

テキスト値を取得します。

Returns:

テキスト値

withEntityLabels

public ExampleLabelObject withEntityLabels(List entityLabels)

entityLabels 値を設定します。

Parameters:

entityLabels - 設定する entityLabels 値

Returns:

ExampleLabelObject オブジェクト自体。

withIntentName

public ExampleLabelObject withIntentName(String intentName)

intentName 値を設定します。

Parameters:

intentName - 設定する intentName 値

Returns:

ExampleLabelObject オブジェクト自体。

withText

public ExampleLabelObject withText(String text)

テキスト値を設定します。

Parameters:

text - 設定するテキスト値

Returns:

ExampleLabelObject オブジェクト自体。

適用対象