次の方法で共有


CompositeEntityModel クラス

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

public class CompositeEntityModel

複合エンティティ抽出器。

メソッドの概要

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

子の値を取得します。

String name()

名前の値を取得します。

CompositeEntityModel withChildren(List<String> children)

子の値を設定します。

CompositeEntityModel withName(String name)

名前の値を設定します。

メソッドの詳細

children

public List children()

子の値を取得します。

Returns:

子の値

name

public String name()

名前の値を取得します。

Returns:

名前の値

withChildren

public CompositeEntityModel withChildren(List children)

子の値を設定します。

Parameters:

children - 設定する子値

Returns:

CompositeEntityModel オブジェクト自体。

withName

public CompositeEntityModel withName(String name)

名前の値を設定します。

Parameters:

name - 設定する名前の値

Returns:

CompositeEntityModel オブジェクト自体。

適用対象