get()

Returns the `ValidationError` instance of the given unique identification

ValidationErrors.prototype.get()

Returns the ValidationError instance of the given unique identification id if set, otherwise undefined.

validation-errors.class.ts
public get<ErrorId extends Id>(
  id: ErrorId
): ValidationError<ErrorId> | undefined {
  return this.errors.get(id);
}

Generic type variables

ErrorIdextendsId

A generic type variable ErrorId constrained by the generic type variable Id of the Errors object indicates the type picked from the Id and its exact type is useful in picking the specific range error from the storage.

Parameters

The unique identification number of generic type variable ErrorId to pick an error from the object.

Return type

ValidationError<ErrorId> |undefined

The return type is the ValidationError object that takes the generic type variable ErrorId or undefined.

Returns

The return value is the ValidationError instance of the given id if set, otherwise undefined.

Example usage

// Example usage.
import { ValidationErrors } from '@angular-package/error';

// Define validation errors.
const validationErrors = new ValidationErrors(
  '(VE: 4332)',
  '(VE: 4331)',
  '(VE: 4330)'
);

// Set the `ValidationError` objects under the given identification numbers.
validationErrors
  .set('Age is 99', 'Age must be', '(VE: 4330)')
  .set('Detected numbers', 'Provide only letters', '(VE: 4331)');


// Returns ValidationError: Problem(VE: 4330): Age is 99 => Fix: Age must be
validationErrors.get('(VE: 4330)');

Last updated