|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Rule.Operators>
org.knime.base.node.rules.Rule.Operators
public static enum Rule.Operators
Enumeration for all possible operators used in a rule.
Enum Constant Summary | |
---|---|
AND
Boolean AND. |
|
EQ
Numeric or string equal. |
|
GE
Numeric greater than or equal. |
|
GT
Numeric greater than. |
|
IN
Set matching. |
|
LE
Numeric lower than or equal. |
|
LIKE
Wildcard matching (* and ? as wildcards). |
|
LT
Numeric lower than. |
|
MISSING
Test for missing value. |
|
NOT
Boolean NOT. |
|
OR
Boolean OR. |
|
XOR
Boolean XOR. |
Method Summary | |
---|---|
String |
toString()
|
static Rule.Operators |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Rule.Operators[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Rule.Operators GT
public static final Rule.Operators LT
public static final Rule.Operators GE
public static final Rule.Operators LE
public static final Rule.Operators EQ
public static final Rule.Operators AND
public static final Rule.Operators OR
public static final Rule.Operators XOR
public static final Rule.Operators NOT
public static final Rule.Operators MISSING
public static final Rule.Operators LIKE
public static final Rule.Operators IN
Method Detail |
---|
public static Rule.Operators[] values()
for (Rule.Operators c : Rule.Operators.values()) System.out.println(c);
public static Rule.Operators valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<Rule.Operators>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |