|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Operator>
net.sf.seaf.common.Operator
public enum Operator
Comparison operator enumeration.
| Enum Constant Summary | |
|---|---|
eq
Equals. |
|
eqex
Equals if exists. |
|
ex
Exists. |
|
ge
Greater than or equals. |
|
geex
Greater than or equals if exists. |
|
gt
Greater than. |
|
gtex
Greater than if exists. |
|
le
Less than or equals. |
|
leex
Less than or equals if exists. |
|
like
Like. |
|
likeex
Like if exists. |
|
lt
Less than. |
|
ltex
Less than if exists. |
|
neq
Not equals. |
|
neqex
Not equals if exists. |
|
nex
Not exists. |
|
| Method Summary | |
|---|---|
String |
getDescription()
|
String |
getLabel()
|
String |
getSql()
|
static Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Operator[] |
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, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Operator gt
public static final Operator ge
public static final Operator lt
public static final Operator le
public static final Operator eq
public static final Operator neq
public static final Operator like
public static final Operator ex
public static final Operator nex
public static final Operator gtex
public static final Operator geex
public static final Operator ltex
public static final Operator leex
public static final Operator eqex
public static final Operator neqex
public static final Operator likeex
| Method Detail |
|---|
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static Operator 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 getSql()
public String getLabel()
public String getDescription()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||