次の方法で共有


JSONEntity クラス

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

public class JSONEntity

エクスポートされたモデル - 発話から抽出されたエンティティ。

メソッドの概要

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

子の値を取得します。

int endPos()

endPos 値を取得します。

String entity()

エンティティ値を取得します。

String role()

ロールの値を取得します。

int startPos()

startPos 値を取得します。

JSONEntity withChildren(List<JSONEntity> children)

子の値を設定します。

JSONEntity withEndPos(int endPos)

endPos 値を設定します。

JSONEntity withEntity(String entity)

エンティティ値を設定します。

JSONEntity withRole(String role)

ロールの値を設定します。

JSONEntity withStartPos(int startPos)

startPos 値を設定します。

メソッドの詳細

children

public List children()

子の値を取得します。

Returns:

子の値

endPos

public int endPos()

endPos 値を取得します。

Returns:

endPos 値

entity

public String entity()

エンティティ値を取得します。

Returns:

エンティティ値

role

public String role()

ロールの値を取得します。

Returns:

ロール値

startPos

public int startPos()

startPos 値を取得します。

Returns:

startPos 値

withChildren

public JSONEntity withChildren(List children)

子の値を設定します。

Parameters:

children - 設定する子値

Returns:

JSONEntity オブジェクト自体。

withEndPos

public JSONEntity withEndPos(int endPos)

endPos 値を設定します。

Parameters:

endPos - 設定する endPos 値

Returns:

JSONEntity オブジェクト自体。

withEntity

public JSONEntity withEntity(String entity)

エンティティ値を設定します。

Parameters:

entity - 設定するエンティティ値

Returns:

JSONEntity オブジェクト自体。

withRole

public JSONEntity withRole(String role)

ロールの値を設定します。

Parameters:

role - 設定するロール値

Returns:

JSONEntity オブジェクト自体。

withStartPos

public JSONEntity withStartPos(int startPos)

startPos 値を設定します。

Parameters:

startPos - 設定する startPos 値

Returns:

JSONEntity オブジェクト自体。

適用対象