Package org.cytoscape.filter.predicates
Enum Class Predicate
- All Implemented Interfaces:
Serializable
,Comparable<Predicate>
,java.lang.constant.Constable
Various predicates that can be used to test conditions in
Transformers
. Implementations are free to support any subset of
the predicates listed here.Cytoscape Backwards Compatibility (Enum): This class is an enum therefore can't be extended by users. This means that we may add methods or enum values for minor version updates. Methods or enum values will only be removed 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>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA ternary predicate that tests whether the first parameter is greater than or equal to the second parameter, and less than or equal to the third parameter.A binary predicate that tests whether the first parameter is contained within the second parameter.A binary predicate that tests whether the first parameter does not contain the second parameter.A binary predicate that tests whether the first parameter is greater than the second.A binary predicate that tests whether the first parameter is greater than or equal to the second.A binary predicate that tests whether the first parameter is equal to the second.A binary predicate that tests whether the first parameter is not equal to the second.A ternary predicate that tests whether the first parameter is less than the second parameter, and greater than the third parameter.A binary predicate that tests whether the first parameter is less than the second.A binary predicate that tests whether the first parameter is less than or equal to the second.A binary predicate that tests whether the first parameter matches a regular expression (second parameter). -
Method Summary
-
Enum Constant Details
-
IS
A binary predicate that tests whether the first parameter is equal to the second. -
IS_NOT
A binary predicate that tests whether the first parameter is not equal to the second. -
GREATER_THAN
A binary predicate that tests whether the first parameter is greater than the second. -
GREATER_THAN_OR_EQUAL
A binary predicate that tests whether the first parameter is greater than or equal to the second. -
LESS_THAN
A binary predicate that tests whether the first parameter is less than the second. -
LESS_THAN_OR_EQUAL
A binary predicate that tests whether the first parameter is less than or equal to the second. -
BETWEEN
A ternary predicate that tests whether the first parameter is greater than or equal to the second parameter, and less than or equal to the third parameter. -
IS_NOT_BETWEEN
A ternary predicate that tests whether the first parameter is less than the second parameter, and greater than the third parameter. -
CONTAINS
A binary predicate that tests whether the first parameter is contained within the second parameter. -
DOES_NOT_CONTAIN
A binary predicate that tests whether the first parameter does not contain the second parameter. -
REGEX
A binary predicate that tests whether the first parameter matches a regular expression (second parameter).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-