Final Class: AsyncRegExpValidator

Oracle® JavaScript Extension Toolkit (JET)
15.1.0

F83698-01

Since:
  • 8.0.0
Module:
  • ojasyncvalidator-regexp

QuickNav

Fields

Description

Constructs an AsyncRegExpValidator that ensures the value matches the provided pattern.


Usage

Signature:

final class AsyncRegExpValidator<V> implements AsyncValidator<V>

Typescript Import Format
//This class is exported directly as module. To import it
import AsyncRegExpValidator= require("ojs/ojasyncvalidator-regexp");

For additional information visit:


Final classes in JET

Classes in JET are generally final and do not support subclassing. At the moment, final is not enforced. However, this will likely change in an upcoming JET release.


See:

Constructor

new AsyncRegExpValidator(options)

Parameters:
Name Type Argument Description
options RegExpValidator.ValidatorOptions <optional>
an object literal used to provide the following properties
See:

Fields

hint :Promise.<(string|null)>

A message to be used as hint, when giving a hint on the expected pattern. There is no default hint for this property.

Methods

validate(value: V): Promise<void>

Validates value for matches using the regular expression provided by the pattern. This method does not raise an error when value is the empty string or null; the method returns a Promise which resolves indicating that the validation was successful. If the application wants the empty string to fail validation, then the application should chain in the required validator (e.g., set required on the input).
Parameters:
Name Type Description
value string that is being validated
Returns:
Type
Promise.<void>