次の方法で共有


JSONRegexFeature クラス

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

public class JSONRegexFeature

エクスポートされたモデル - パターン機能。

メソッドの概要

修飾子と型 メソッドと説明
Boolean activated()

アクティブ化された値を取得します。

String name()

名前の値を取得します。

String pattern()

パターン値を取得します。

JSONRegexFeature withActivated(Boolean activated)

アクティブ化された値を設定します。

JSONRegexFeature withName(String name)

名前の値を設定します。

JSONRegexFeature withPattern(String pattern)

パターン値を設定します。

メソッドの詳細

activated

public Boolean activated()

アクティブ化された値を取得します。

Returns:

アクティブ化された値

name

public String name()

名前の値を取得します。

Returns:

名前の値

pattern

public String pattern()

パターン値を取得します。

Returns:

パターン値

withActivated

public JSONRegexFeature withActivated(Boolean activated)

アクティブ化された値を設定します。

Parameters:

activated - 設定するアクティブ化された値

Returns:

JSONRegexFeature オブジェクト自体。

withName

public JSONRegexFeature withName(String name)

名前の値を設定します。

Parameters:

name - 設定する名前の値

Returns:

JSONRegexFeature オブジェクト自体。

withPattern

public JSONRegexFeature withPattern(String pattern)

パターン値を設定します。

Parameters:

pattern - 設定するパターン値

Returns:

JSONRegexFeature オブジェクト自体。

適用対象