A object interface that defines a method to test if a value is valid.

interface IUFValueValidator {
    isValidValue(aValue): boolean;
}

Methods

Methods

  • Checks if a value is valid.

    Parameters

    • aValue: any

      Value to check

    Returns boolean

    True if the value is valid; false otherwise.