次の方法で共有


CompositeEntityModel クラス

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

public class CompositeEntityModel

LUIS 複合エンティティ。

メソッドの概要

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

子の値を取得します。

String parentType()

parentType 値を取得します。

String value()

値を取得します。

CompositeEntityModel withChildren(List<CompositeChildModel> children)

子の値を設定します。

CompositeEntityModel withParentType(String parentType)

parentType 値を設定します。

CompositeEntityModel withValue(String value)

値を設定します。

メソッドの詳細

children

public List children()

子の値を取得します。

Returns:

子の値

parentType

public String parentType()

parentType 値を取得します。

Returns:

parentType 値

value

public String value()

値を取得します。

Returns:

値の値

withChildren

public CompositeEntityModel withChildren(List children)

子の値を設定します。

Parameters:

children - 設定する子値

Returns:

CompositeEntityModel オブジェクト自体。

withParentType

public CompositeEntityModel withParentType(String parentType)

parentType 値を設定します。

Parameters:

parentType - 設定する parentType 値

Returns:

CompositeEntityModel オブジェクト自体。

withValue

public CompositeEntityModel withValue(String value)

値を設定します。

Parameters:

value - 設定する値

Returns:

CompositeEntityModel オブジェクト自体。

適用対象