|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RuleNode | |
---|---|
org.knime.base.node.rules |
Uses of RuleNode in org.knime.base.node.rules |
---|
Methods in org.knime.base.node.rules that return RuleNode | |
---|---|
static RuleNode |
RuleNodeFactory.and(RuleNode left,
RuleNode right)
Creates a new AND node. |
static RuleNode |
RuleNodeFactory.eq(int leftCol,
int rightCol)
Creates a equal node, that compares the values in two columns. |
static RuleNode |
RuleNodeFactory.eq(int col,
Number value)
Creates a equal node, that compares the value in a column to a fixed number. |
static RuleNode |
RuleNodeFactory.eq(int col,
String value)
Creates a new equal node, that compares the value in a column to a fixed string. |
static RuleNode |
RuleNodeFactory.ge(int leftCol,
int rightCol,
DataValueComparator comp)
Creates a new greater than or equal node, that compares the values in two columns. |
static RuleNode |
RuleNodeFactory.ge(int col,
Number value)
Creates a new greater than or equal node, that compares the value in a column to a fixed number. |
static RuleNode |
RuleNodeFactory.ge(int col,
String value)
Creates a new greater than or equal node, that compares the value in a column to a fixed string. |
static RuleNode |
RuleNodeFactory.gt(int leftCol,
int rightCol,
DataValueComparator comp)
Creates a new greater than node, that compares the values in two columns. |
static RuleNode |
RuleNodeFactory.gt(int col,
Number value)
Creates a new greater than node, that compares the value in a column to a fixed number. |
static RuleNode |
RuleNodeFactory.gt(int col,
String value)
Creates a new greater than node, that compares the value in a column to a fixed string. |
static RuleNode |
RuleNodeFactory.in(int col,
List<String> list)
Returns a new in node that checks if the the value in the column is equal to at least one string value from the list. |
static RuleNode |
RuleNodeFactory.le(int leftCol,
int rightCol,
DataValueComparator comp)
Creates a new less than or equal node, that compares the values in two columns. |
static RuleNode |
RuleNodeFactory.le(int col,
Number value)
Creates a new less than or equal node, that compares the value in a column to a fixed number. |
static RuleNode |
RuleNodeFactory.le(int col,
String value)
Creates a new less than or equal node, that compares the value in a column to a fixed string. |
static RuleNode |
RuleNodeFactory.like(int col1,
int col2)
Returns a new like not that tries to match a fixed wildcard expression to the value in a column. |
static RuleNode |
RuleNodeFactory.like(int col,
String value)
Returns a new like not that tries to match a fixed wildcard expression to the value in a column. |
static RuleNode |
RuleNodeFactory.like(String value,
int col)
Returns a new like not that tries to match a wildcard expression in a column to a fixed string value. |
static RuleNode |
RuleNodeFactory.lt(int leftCol,
int rightCol,
DataValueComparator comp)
Creates a new less than node, that compares the values in two columns. |
static RuleNode |
RuleNodeFactory.lt(int col,
Number value)
Creates a new less than node, that compares the value in a column to a fixed number. |
static RuleNode |
RuleNodeFactory.lt(int col,
String value)
Creates a new less than node, that compares the value in a column to a fixed string. |
static RuleNode |
RuleNodeFactory.missing(int col)
Creates a new MISSING node. |
static RuleNode |
RuleNodeFactory.not(RuleNode node)
Creates a new NOT node. |
static RuleNode |
RuleNodeFactory.or(RuleNode left,
RuleNode right)
Creates a new OR node. |
static RuleNode |
RuleNodeFactory.xor(RuleNode left,
RuleNode right)
Creates a new XOR node. |
Methods in org.knime.base.node.rules with parameters of type RuleNode | |
---|---|
static RuleNode |
RuleNodeFactory.and(RuleNode left,
RuleNode right)
Creates a new AND node. |
static RuleNode |
RuleNodeFactory.not(RuleNode node)
Creates a new NOT node. |
static RuleNode |
RuleNodeFactory.or(RuleNode left,
RuleNode right)
Creates a new OR node. |
static RuleNode |
RuleNodeFactory.xor(RuleNode left,
RuleNode right)
Creates a new XOR node. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |