public enum UnaryOp extends Enum<UnaryOp>
| Enum Constant and Description |
|---|
ABS |
ARCCOS |
ARCSIN |
ARCTAN |
BIT_INVERT |
CEIL |
COS |
EXP |
FLOOR |
LOG |
NOT |
SIN |
SQRT |
TAN |
| 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 EXP
public static final UnaryOp LOG
public static final UnaryOp SQRT
public static final UnaryOp CEIL
public static final UnaryOp FLOOR
public static final UnaryOp ABS
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 © 2019. All rights reserved.