public static enum Ops.MathOps extends Enum<Ops.MathOps> implements Operator
Enum Constant and Description |
---|
ABS |
ACOS |
ASIN |
ATAN |
CEIL |
COS |
COSH |
COT |
COTH |
DEG |
EXP |
FLOOR |
LN |
LOG |
MAX |
MIN |
POWER |
RAD |
RANDOM |
RANDOM2 |
ROUND |
ROUND2 |
SIGN |
SIN |
SINH |
SQRT |
TAN |
TANH |
Modifier and Type | Method and Description |
---|---|
Class<?> |
getType()
Get the result type of the operator
|
static Ops.MathOps |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ops.MathOps[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ops.MathOps ABS
public static final Ops.MathOps ACOS
public static final Ops.MathOps ASIN
public static final Ops.MathOps ATAN
public static final Ops.MathOps CEIL
public static final Ops.MathOps COS
public static final Ops.MathOps TAN
public static final Ops.MathOps SQRT
public static final Ops.MathOps SIN
public static final Ops.MathOps ROUND
public static final Ops.MathOps ROUND2
public static final Ops.MathOps RANDOM
public static final Ops.MathOps RANDOM2
public static final Ops.MathOps POWER
public static final Ops.MathOps MIN
public static final Ops.MathOps MAX
public static final Ops.MathOps LOG
public static final Ops.MathOps FLOOR
public static final Ops.MathOps EXP
public static final Ops.MathOps COSH
public static final Ops.MathOps COT
public static final Ops.MathOps COTH
public static final Ops.MathOps DEG
public static final Ops.MathOps LN
public static final Ops.MathOps RAD
public static final Ops.MathOps SIGN
public static final Ops.MathOps SINH
public static final Ops.MathOps TANH
public static Ops.MathOps[] values()
for (Ops.MathOps c : Ops.MathOps.values()) System.out.println(c);
public static Ops.MathOps valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2007–2016 Querydsl. All rights reserved.