|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ComparisonOperators>
com.edustructures.sifworks.ComparisonOperators
public enum ComparisonOperators
Operators used to control how an element value is compared in a SIF_Query
| Enum Constant Summary | |
|---|---|
EQ
the "equals" operator |
|
GE
the "greater than or equal to" operator |
|
GT
the "greater than" operator |
|
LE
the "less than or equal to" operator |
|
LT
the "less than" operator |
|
NE
the Negation ("not equal") operator |
|
| Method Summary | |
|---|---|
Operators |
getSIFValue()
|
static ComparisonOperators |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ComparisonOperators[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ComparisonOperators EQ
public static final ComparisonOperators LT
public static final ComparisonOperators GT
public static final ComparisonOperators NE
public static final ComparisonOperators LE
public static final ComparisonOperators GE
| Method Detail |
|---|
public static final ComparisonOperators[] values()
for(ComparisonOperators c : ComparisonOperators.values())
System.out.println(c);
public static ComparisonOperators 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 namepublic Operators getSIFValue()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||