次の方法で共有


EntityModel クラス

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

public class EntityModel

発話から抽出されたエンティティ。

メソッドの概要

修飾子と型 メソッドと説明
Map<String, Object> additionalProperties()

additionalProperties 値を取得します。

int endIndex()

endIndex 値を取得します。

String entity()

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

int startIndex()

startIndex 値を取得します。

String type()

型の値を取得します。

EntityModel withAdditionalProperties(Map<String, Object> additionalProperties)

additionalProperties 値を設定します。

EntityModel withEndIndex(int endIndex)

endIndex 値を設定します。

EntityModel withEntity(String entity)

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

EntityModel withStartIndex(int startIndex)

startIndex 値を設定します。

EntityModel withType(String type)

型の値を設定します。

メソッドの詳細

additionalProperties

public Map additionalProperties()

additionalProperties 値を取得します。

Returns:

additionalProperties 値

endIndex

public int endIndex()

endIndex 値を取得します。

Returns:

endIndex 値

entity

public String entity()

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

Returns:

エンティティ値

startIndex

public int startIndex()

startIndex 値を取得します。

Returns:

startIndex 値

type

public String type()

型の値を取得します。

Returns:

型の値

withAdditionalProperties

public EntityModel withAdditionalProperties(Map additionalProperties)

additionalProperties 値を設定します。

Parameters:

additionalProperties - 設定する additionalProperties 値

Returns:

EntityModel オブジェクト自体。

withEndIndex

public EntityModel withEndIndex(int endIndex)

endIndex 値を設定します。

Parameters:

endIndex - 設定する endIndex 値

Returns:

EntityModel オブジェクト自体。

withEntity

public EntityModel withEntity(String entity)

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

Parameters:

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

Returns:

EntityModel オブジェクト自体。

withStartIndex

public EntityModel withStartIndex(int startIndex)

startIndex 値を設定します。

Parameters:

startIndex - 設定する startIndex 値

Returns:

EntityModel オブジェクト自体。

withType

public EntityModel withType(String type)

型の値を設定します。

Parameters:

type - 設定する型の値

Returns:

EntityModel オブジェクト自体。

適用対象