Interface IInstanceFilter<D>

  • Type Parameters:
    D - The type of dataset this filter may be applied to.

    public interface IInstanceFilter<D>
    This filter can be applied to whole datasets and may potentially even modify datasets entirely.
    • Method Detail

      • apply

        D apply​(D input)
        Applies the filter's functionality to a specific dataset.
        Parameters:
        input - The datset to be filtered.
        Returns:
        Returns the filtered dataset.