Package tilda.db
Enum QueryHelper.Op
- java.lang.Object
-
- java.lang.Enum<QueryHelper.Op>
-
- tilda.db.QueryHelper.Op
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<QueryHelper.Op>
- Enclosing class:
- QueryHelper
protected static enum QueryHelper.Op extends java.lang.Enum<QueryHelper.Op>
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
_Str
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static QueryHelper.Op
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static QueryHelper.Op[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final QueryHelper.Op EQUALS
-
LT
public static final QueryHelper.Op LT
-
LTE
public static final QueryHelper.Op LTE
-
GT
public static final QueryHelper.Op GT
-
GTE
public static final QueryHelper.Op GTE
-
NOT_EQUALS
public static final QueryHelper.Op NOT_EQUALS
-
PLUS
public static final QueryHelper.Op PLUS
-
MINUS
public static final QueryHelper.Op MINUS
-
MULTIPLY
public static final QueryHelper.Op MULTIPLY
-
DIVIDE
public static final QueryHelper.Op DIVIDE
-
LIKE
public static final QueryHelper.Op LIKE
-
NOT_LIKE
public static final QueryHelper.Op NOT_LIKE
-
-
Method Detail
-
values
public static QueryHelper.Op[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (QueryHelper.Op c : QueryHelper.Op.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QueryHelper.Op valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-