Interface FilterFactory<C,E>

Type Parameters:
C - The context type of the elements this factory is compatible with.
E - The element type this factory is compatible with.
All Superinterfaces:
TransformerFactory<C,E>

public interface FilterFactory<C,E> extends TransformerFactory<C,E>
A factory for creating Filters.

Cytoscape Backwards Compatibility (SPI Interface): We expect that this interface will be implemented. Therefore to maintain backwards compatibility this interface will only be modified for major version updates.

Module: filter-api

To use this in your app, include the following dependency in your POM:

<dependency>
    <groupId>org.cytoscape</groupId>
    <artifactId>filter-api</artifactId>
</dependency>
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a new Filter with the same id as this factory.

    Methods inherited from interface org.cytoscape.filter.model.TransformerFactory

    getId
  • Method Details

    • createFilter

      Filter<C,E> createFilter()
      Returns a new Filter with the same id as this factory.
      Returns:
      a new Filter.