Interface NamedTransformer<C,​E>

  • Type Parameters:
    C - The context type of the elements this NamedTransformer is compatible with.
    E - The element type this NamedTransformer is compatible with.

    public interface NamedTransformer<C,​E>
    A chain of Transformers with a user-defined name.

    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>

    Cytoscape Backwards Compatibility (API Interface): We expect that this interface will be used but not implemented by developers using this interface. As such, we reserve the right to add methods to the interface as part of minor version upgrades. We will not remove methods for any changes other than major version upgrades.
    • Method Detail

      • getName

        String getName()
        Returns the name of this NamedTransformer.
        Returns:
        the name.
      • getTransformers

        List<Transformer<C,​E>> getTransformers()
        Returns the List of Transformers contained within this NamedTransformer.
        Returns:
        the List of Transformers contained within.