public class SqlCalculates
extends java.lang.Object
构造器和说明 |
---|
SqlCalculates() |
限定符和类型 | 方法和说明 |
---|---|
static <T> boolean |
between(T t,
T min,
T max)
BETWEEN 运算符
|
static <T> T |
div(T t1,
T t2)
/ 运算符
|
static <T> boolean |
eq(T t1,
T t2)
= 运算符
|
static <T> boolean |
ge(T t1,
T t2)
>= 运算符
|
static <T> boolean |
gt(T t1,
T t2)
> 运算符
|
static <T> boolean |
is(T t)
IS 运算符
|
static <T> boolean |
LE(T t1,
T t2)
<= 运算符
|
static <T> boolean |
like(T t1,
T t2)
LIKE 运算符
|
static <T> boolean |
lt(T t1,
T t2)
< 运算符
|
static <T> T |
minus(T t1,
T t2)
- 运算符
|
static <T> T |
mod(T t1,
T t2)
% 运算符
|
static <T> T |
mul(T t1,
T t2)
* 运算符
|
static <T> boolean |
ne(T t1,
T t2)
<> or !
|
static <T> boolean |
not(T t)
NOT 运算符
|
static <T> T |
plus(T t1,
T t2)
+ 运算符
|
public static <T> boolean is(T t)
public static <T> boolean not(T t)
public static <T> T plus(T t1, T t2)
public static <T> T minus(T t1, T t2)
public static <T> T mul(T t1, T t2)
public static <T> T div(T t1, T t2)
public static <T> T mod(T t1, T t2)
public static <T> boolean eq(T t1, T t2)
public static <T> boolean ne(T t1, T t2)
public static <T> boolean gt(T t1, T t2)
public static <T> boolean lt(T t1, T t2)
public static <T> boolean ge(T t1, T t2)
public static <T> boolean LE(T t1, T t2)
public static <T> boolean like(T t1, T t2)
public static <T> boolean between(T t, T min, T max)