次の方法で共有


RegexEntity クラス

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

public class RegexEntity

正規表現エンティティ抽出器。

メソッドの概要

修飾子と型 メソッドと説明
String name()

名前の値を取得します。

String regexPattern()

regexPattern 値を取得します。

List<String> roles()

ロールの値を取得します。

RegexEntity withName(String name)

名前の値を設定します。

RegexEntity withRegexPattern(String regexPattern)

regexPattern 値を設定します。

RegexEntity withRoles(List<String> roles)

ロールの値を設定します。

メソッドの詳細

name

public String name()

名前の値を取得します。

Returns:

名前の値

regexPattern

public String regexPattern()

regexPattern 値を取得します。

Returns:

regexPattern 値

roles

public List roles()

ロールの値を取得します。

Returns:

ロールの値

withName

public RegexEntity withName(String name)

名前の値を設定します。

Parameters:

name - 設定する名前の値

Returns:

RegexEntity オブジェクト自体。

withRegexPattern

public RegexEntity withRegexPattern(String regexPattern)

regexPattern 値を設定します。

Parameters:

regexPattern - 設定する regexPattern 値

Returns:

RegexEntity オブジェクト自体。

withRoles

public RegexEntity withRoles(List roles)

ロールの値を設定します。

Parameters:

roles - 設定するロール値

Returns:

RegexEntity オブジェクト自体。

適用対象