Package | Description |
---|---|
org.jparsec.examples.java.ast.expression |
Modifier and Type | Field and Description |
---|---|
Operator |
PrefixUnaryExpression.op |
Operator |
PostfixUnaryExpression.op |
Operator |
BinaryExpression.op |
Modifier and Type | Method and Description |
---|---|
static Operator |
Operator.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
Operator.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
BinaryExpression(Expression left,
Operator op,
Expression right) |
PostfixUnaryExpression(Expression expression,
Operator op) |
PrefixUnaryExpression(Operator op,
Expression expression) |
Copyright © 2013–2016 jparsec. All rights reserved.