public enum CustomOperator extends java.lang.Enum<CustomOperator> implements com.querydsl.core.types.Operator
| Enum Constant and Description |
|---|
ACCOUNT_BALANCE1 |
ACCOUNT_BALANCE2 |
ADD_DAYS |
ADD_INTERVAL |
BALANCE_SUM |
NAME_HIERARCHY |
ORDER_HIERARCHY |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Class<?> |
getType() |
static CustomOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomOperator ADD_DAYS
public static final CustomOperator ADD_INTERVAL
public static final CustomOperator BALANCE_SUM
public static final CustomOperator ACCOUNT_BALANCE1
public static final CustomOperator ACCOUNT_BALANCE2
public static final CustomOperator NAME_HIERARCHY
public static final CustomOperator ORDER_HIERARCHY
public static CustomOperator[] values()
for (CustomOperator c : CustomOperator.values()) System.out.println(c);
public static CustomOperator 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.Class<?> getType()
getType in interface com.querydsl.core.types.Operator