Class: RequiredValidatorFactory

Oracle® JavaScript Extension Toolkit (JET)
16.1.0

F92237-01

Since:
  • 0.6.0
Module:
  • ojvalidationfactory-base

QuickNav

Description

A factory implementation to create an instance of the built-in required validator of type oj.RequiredValidator.


Usage

Typescript Import Format
//This class is not exported from module and can not be accessed in runtime.
//However to enable typechecking and ducktyping, you can access it as an interface.
import {RequiredValidatorFactory} from "ojs/ojvalidationfactory-base";

//To access this type in your code,
class MyClass implements RequiredValidatorFactory{
//or,
let myVariable: RequiredValidatorFactory;

For additional information visit:


A factory implementation to create an instance of the built-in required validator of type oj.RequiredValidator.

Methods

createValidator(options) : {oj.RequiredValidator}

Creates an immutable validator instance of type @link oj.RequiredValidator that ensures that the value provided is not empty.
Parameters:
Name Type Argument Description
options oj.RequiredValidator.ValidatorOptions <optional>
an object literal used to provide an optional hint and error message. See oj.RequiredValidator for details.

Returns:
Type
oj.RequiredValidator