public static enum WhereObject.WhereOperator extends java.lang.Enum<WhereObject.WhereOperator>
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
getSQLText()
Gets the operator's text, as used in SQL. 
 | 
static WhereObject.WhereOperator | 
migrate(java.lang.String old)
Migration code, internal use only. 
 | 
static WhereObject.WhereOperator | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static WhereObject.WhereOperator[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final WhereObject.WhereOperator AND
public static final WhereObject.WhereOperator OR
public static WhereObject.WhereOperator[] values()
for (WhereObject.WhereOperator c : WhereObject.WhereOperator.values()) System.out.println(c);
public static WhereObject.WhereOperator 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 java.lang.String getSQLText()
public static WhereObject.WhereOperator migrate(java.lang.String old)