Skip to end of metadata
Go to start of metadata

Author

Boris Capitanu

Creation date

06/06/2011

Firing policy

all

Package

org.seasr.meandre.components.transform.filters

DESCRIPTION

This component filters (removes) the tokens with token counts satisfying the given constraints

INPUTS

Name

Description

Example

token_counts
The token counts to filter.
TYPE: org.seasr.datatypes.BasicDataTypes.IntegersMap
TYPE: java.util.Map

 

OUTPUTS

Name

Description

Example

error
This port is used to output any unhandled errors encountered during the execution of this component

 

token_counts
The filtered token counts.
TYPE: org.seasr.datatypes.BasicDataTypes.IntegersMap

 

PROPERTIES

Name

Description

Default value

_debug_level
Controls the verbosity of debug messages printed by the component during execution.
Possible values are: off, severe, warning, info, config, fine, finer, finest, all
Append ',mirror' to any of the values above to mirror that output to the server logs.
info
_ignore_errors
Set to 'true' to ignore all unhandled exceptions and prevent the flow from being terminated. Setting this property to 'false' will result in the flow being terminated in the event an unhandled exception is thrown during the execution of this component
false
condition
The condition that needs to be true for tokens to be removed. Use 'n' in the condition to represent the token count. For example, if 'condition' is set to 'n >= 3 && n < 10' it means it will filter out all the tokens with counts greater than or equal to 3 but less than 10
n == 1
Write a comment…