Interface IMaskManager

All Known Implementing Classes:
MaskManager

public interface IMaskManager
The mask manager exposes all available mask calls.
Since:
7.1
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    getMaskCall(String maskCallName)
    This method returns the mask call for a specified name.
    This method returns all available mask call names.
  • Method Details

    • getMaskCall

      IMaskCall getMaskCall(String maskCallName)
      This method returns the mask call for a specified name.
      Parameters:
      maskCallName - The name of the mask call to lookup.
      Returns:
      The mask call implementation, never null.
      Throws:
      UnknownMaskCallException - Is thrown when no mask call could be returned for the specified name.
    • getMaskCallNames

      String[] getMaskCallNames()
      This method returns all available mask call names.
      Returns:
      An array containing all mask call names, never null.