public enum UnaryOp extends Enum<UnaryOp>
Enum Constant and Description |
---|
ABS |
ARCCOS |
ARCCOSH |
ARCSIN |
ARCSINH |
ARCTAN |
ARCTANH |
BIT_INVERT |
CBRT |
CEIL |
COS |
COSH |
EXP |
FLOOR |
LOG |
NOT |
RINT |
SIN |
SINH |
SQRT |
TAN |
TANH |
Modifier and Type | Method and Description |
---|---|
static UnaryOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnaryOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnaryOp SIN
public static final UnaryOp COS
public static final UnaryOp TAN
public static final UnaryOp ARCSIN
public static final UnaryOp ARCCOS
public static final UnaryOp ARCTAN
public static final UnaryOp SINH
public static final UnaryOp COSH
public static final UnaryOp TANH
public static final UnaryOp ARCSINH
public static final UnaryOp ARCCOSH
public static final UnaryOp ARCTANH
public static final UnaryOp EXP
public static final UnaryOp LOG
public static final UnaryOp SQRT
public static final UnaryOp CBRT
public static final UnaryOp CEIL
public static final UnaryOp FLOOR
public static final UnaryOp ABS
public static final UnaryOp RINT
public static final UnaryOp BIT_INVERT
public static final UnaryOp NOT
public static UnaryOp[] values()
for (UnaryOp c : UnaryOp.values()) System.out.println(c);
public static UnaryOp 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 © 2024. All rights reserved.