Lines Matching refs:ValueExp

168      public static QueryExp gt(ValueExp v1, ValueExp v2)  {
186 public static QueryExp geq(ValueExp v1, ValueExp v2) {
204 public static QueryExp leq(ValueExp v1, ValueExp v2) {
222 public static QueryExp lt(ValueExp v1, ValueExp v2) {
240 public static QueryExp eq(ValueExp v1, ValueExp v2) {
258 public static QueryExp between(ValueExp v1, ValueExp v2, ValueExp v3) {
332 * Query call that expects a ValueExp.</p>
375 public static QueryExp in(ValueExp val, ValueExp valueList[]) {
384 * @return A ValueExp object containing the string argument.
392 * that expects a ValueExp.
396 * @return A ValueExp object containing the argument. The
402 public static ValueExp value(Number val) {
408 * that expects a ValueExp.
412 * @return A ValueExp object containing the argument. The
418 public static ValueExp value(int val) {
424 * that expects a ValueExp.
428 * @return A ValueExp object containing the argument. The
434 public static ValueExp value(long val) {
440 * that expects a ValueExp.
444 * @return A ValueExp object containing the argument. The
450 public static ValueExp value(float val) {
456 * that expects a ValueExp.
460 * @return A ValueExp object containing the argument. The
466 public static ValueExp value(double val) {
472 * that expects a ValueExp.
476 * @return A ValueExp object containing the argument. The
482 public static ValueExp value(boolean val) {
493 * @return A ValueExp representing the sum or concatenation of
500 public static ValueExp plus(ValueExp value1, ValueExp value2) {
511 * @return A ValueExp representing the product. The returned
518 public static ValueExp times(ValueExp value1,ValueExp value2) {
529 * @return A ValueExp representing the difference between two
536 public static ValueExp minus(ValueExp value1, ValueExp value2) {
547 * @return A ValueExp representing the quotient of two arguments.
554 public static ValueExp div(ValueExp value1, ValueExp value2) {