public static enum UnaryExpression.UnaryOperator extends java.lang.Enum<UnaryExpression.UnaryOperator>
| Enum Constant and Description |
|---|
ABS |
COSINUS |
FACTORIAL |
LOGARITHM |
POWERSET |
SINUS |
TANGENS |
| Modifier and Type | Method and Description |
|---|---|
static UnaryExpression.UnaryOperator |
fromString(java.lang.String text) |
java.lang.String |
getText() |
static UnaryExpression.UnaryOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnaryExpression.UnaryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnaryExpression.UnaryOperator ABS
public static final UnaryExpression.UnaryOperator COSINUS
public static final UnaryExpression.UnaryOperator SINUS
public static final UnaryExpression.UnaryOperator TANGENS
public static final UnaryExpression.UnaryOperator FACTORIAL
public static final UnaryExpression.UnaryOperator LOGARITHM
public static final UnaryExpression.UnaryOperator POWERSET
public static UnaryExpression.UnaryOperator[] values()
for (UnaryExpression.UnaryOperator c : UnaryExpression.UnaryOperator.values()) System.out.println(c);
public static UnaryExpression.UnaryOperator 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.String getText()
public static UnaryExpression.UnaryOperator fromString(java.lang.String text)