java.io.Serializable, java.lang.Comparable<SQLiteUtils.PredicateOperator>public static enum SQLiteUtils.PredicateOperator extends java.lang.Enum<SQLiteUtils.PredicateOperator>
| Enum Constant | Description |
|---|---|
EQUALS |
|
GREATER_THAN |
|
GREATER_THAN_OR_EQUAL_TO |
|
LESS_THAN |
|
LESS_THAN_OR_EQUAL_TO |
|
NOT_EQUAL_TO |
| Modifier and Type | Method | Description |
|---|---|---|
static SQLiteUtils.PredicateOperator |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SQLiteUtils.PredicateOperator[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLiteUtils.PredicateOperator EQUALS
public static final SQLiteUtils.PredicateOperator NOT_EQUAL_TO
public static final SQLiteUtils.PredicateOperator GREATER_THAN
public static final SQLiteUtils.PredicateOperator LESS_THAN
public static final SQLiteUtils.PredicateOperator GREATER_THAN_OR_EQUAL_TO
public static final SQLiteUtils.PredicateOperator LESS_THAN_OR_EQUAL_TO
public static SQLiteUtils.PredicateOperator[] values()
for (SQLiteUtils.PredicateOperator c : SQLiteUtils.PredicateOperator.values()) System.out.println(c);
public static SQLiteUtils.PredicateOperator 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 null