Interface ILcdFunction

All Known Implementing Classes:
TLcdFilteredFunction

public interface ILcdFunction
The interface ILcdFunction defines a single generic method. An object implementing this interface can be passed as an argument to other methods to simulate passing a function.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    applyOn(Object aObject)
    Applies a method to the given argument.
  • Method Details

    • applyOn

      boolean applyOn(Object aObject) throws IllegalArgumentException
      Applies a method to the given argument. The actual function of the method is specified by the implementations of this interface.
      Parameters:
      aObject - the generic argument of the function.
      Returns:
      true if the method was successful, false otherwise.
      Throws:
      IllegalArgumentException - if the argument is invalid.