public static enum FTYPE.Math extends Enum<FTYPE.Math>
| Enum Constant and Description |
|---|
ABS |
ACOS |
ASIN |
ATAN |
ATAN2 |
COS |
COT |
DEGREES |
E |
EXP |
FLOOR |
HAVERSIN |
LOG |
LOG10 |
PI |
RADIANS |
RAND |
ROUND |
SIGN |
SIN |
SQRT |
TAN |
| Modifier and Type | Method and Description |
|---|---|
static FTYPE.Math |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FTYPE.Math[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FTYPE.Math ABS
public static final FTYPE.Math ACOS
public static final FTYPE.Math ASIN
public static final FTYPE.Math ATAN
public static final FTYPE.Math ATAN2
public static final FTYPE.Math COS
public static final FTYPE.Math COT
public static final FTYPE.Math DEGREES
public static final FTYPE.Math RADIANS
public static final FTYPE.Math E
public static final FTYPE.Math EXP
public static final FTYPE.Math FLOOR
public static final FTYPE.Math HAVERSIN
public static final FTYPE.Math LOG
public static final FTYPE.Math LOG10
public static final FTYPE.Math PI
public static final FTYPE.Math RAND
public static final FTYPE.Math ROUND
public static final FTYPE.Math SIGN
public static final FTYPE.Math SIN
public static final FTYPE.Math SQRT
public static final FTYPE.Math TAN
public static FTYPE.Math[] values()
for (FTYPE.Math c : FTYPE.Math.values()) System.out.println(c);
public static FTYPE.Math 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 © 2016. All rights reserved.