次の方法で共有


BatchLabelExample クラス

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

public class BatchLabelExample

ラベル付けされた発話の例のバッチを追加するときの応答。

メソッドの概要

修飾子と型 メソッドと説明
OperationStatus error()

エラー値を取得します。

Boolean hasError()

hasError 値を取得します。

LabelExampleResponse value()

値を取得します。

BatchLabelExample withError(OperationStatus error)

エラー値を設定します。

BatchLabelExample withHasError(Boolean hasError)

hasError 値を設定します。

BatchLabelExample withValue(LabelExampleResponse value)

値を設定します。

メソッドの詳細

error

public OperationStatus error()

エラー値を取得します。

Returns:

エラー値

hasError

public Boolean hasError()

hasError 値を取得します。

Returns:

hasError 値

value

public LabelExampleResponse value()

値を取得します。

Returns:

値の値

withError

public BatchLabelExample withError(OperationStatus error)

エラー値を設定します。

Parameters:

error - 設定するエラー値

Returns:

BatchLabelExample オブジェクト自体。

withHasError

public BatchLabelExample withHasError(Boolean hasError)

hasError 値を設定します。

Parameters:

hasError - 設定する hasError 値

Returns:

BatchLabelExample オブジェクト自体。

withValue

public BatchLabelExample withValue(LabelExampleResponse value)

値を設定します。

Parameters:

value - 設定する値

Returns:

BatchLabelExample オブジェクト自体。

適用対象