次の方法で共有


EntityPrediction クラス

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

public class EntityPrediction

推奨されるエンティティ。

メソッドの概要

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

子の値を取得します。

int endTokenIndex()

endTokenIndex 値を取得します。

String entityName()

entityName 値を取得します。

String phrase()

フレーズ値を取得します。

int startTokenIndex()

startTokenIndex 値を取得します。

EntityPrediction withChildren(List<EntityPrediction> children)

子の値を設定します。

EntityPrediction withEndTokenIndex(int endTokenIndex)

endTokenIndex 値を設定します。

EntityPrediction withEntityName(String entityName)

entityName 値を設定します。

EntityPrediction withPhrase(String phrase)

フレーズ値を設定します。

EntityPrediction withStartTokenIndex(int startTokenIndex)

startTokenIndex 値を設定します。

メソッドの詳細

children

public List children()

子の値を取得します。

Returns:

子の値

endTokenIndex

public int endTokenIndex()

endTokenIndex 値を取得します。

Returns:

endTokenIndex 値

entityName

public String entityName()

entityName 値を取得します。

Returns:

entityName 値

phrase

public String phrase()

フレーズ値を取得します。

Returns:

フレーズ値

startTokenIndex

public int startTokenIndex()

startTokenIndex 値を取得します。

Returns:

startTokenIndex 値

withChildren

public EntityPrediction withChildren(List children)

子の値を設定します。

Parameters:

children - 設定する子値

Returns:

EntityPrediction オブジェクト自体。

withEndTokenIndex

public EntityPrediction withEndTokenIndex(int endTokenIndex)

endTokenIndex 値を設定します。

Parameters:

endTokenIndex - 設定する endTokenIndex 値

Returns:

EntityPrediction オブジェクト自体。

withEntityName

public EntityPrediction withEntityName(String entityName)

entityName 値を設定します。

Parameters:

entityName - 設定する entityName 値

Returns:

EntityPrediction オブジェクト自体。

withPhrase

public EntityPrediction withPhrase(String phrase)

フレーズ値を設定します。

Parameters:

phrase - 設定するフレーズ値

Returns:

EntityPrediction オブジェクト自体。

withStartTokenIndex

public EntityPrediction withStartTokenIndex(int startTokenIndex)

startTokenIndex 値を設定します。

Parameters:

startTokenIndex - 設定する startTokenIndex 値

Returns:

EntityPrediction オブジェクト自体。

適用対象