public static enum ICondition.Operator extends java.lang.Enum<ICondition.Operator>
| Modifier and Type | Method and Description |
|---|---|
boolean |
evaluate(float count1,
float count2) |
boolean |
evaluate(int count1,
int count2) |
java.lang.String |
toString() |
static ICondition.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ICondition.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICondition.Operator EQ
public static final ICondition.Operator GE
public static final ICondition.Operator LE
public static ICondition.Operator[] values()
for (ICondition.Operator c : ICondition.Operator.values()) System.out.println(c);
public static ICondition.Operator valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean evaluate(int count1,
int count2)
public boolean evaluate(float count1,
float count2)
public java.lang.String toString()
toString in class java.lang.Enum<ICondition.Operator>