Package org.cytoscape.filter.model
Interface NamedTransformer<C,E>
- Type Parameters:
C- The context type of the elements thisNamedTransformeris compatible with.E- The element type thisNamedTransformeris 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 Summary
Modifier and TypeMethodDescriptiongetName()Returns the name of thisNamedTransformer.List<Transformer<C,E>> Returns theListofTransformers contained within thisNamedTransformer.
-
Method Details
-
getName
String getName()Returns the name of thisNamedTransformer.- Returns:
- the name.
-
getTransformers
List<Transformer<C,E>> getTransformers()Returns theListofTransformers contained within thisNamedTransformer.- Returns:
- the
ListofTransformers contained within.
-