Package org.jparsec.examples.sql.ast
Class UnaryExpression
- java.lang.Object
-
- org.jparsec.examples.common.ValueObject
-
- org.jparsec.examples.sql.ast.UnaryExpression
-
- All Implemented Interfaces:
Expression
public final class UnaryExpression extends ValueObject implements Expression
Models an expression with unary operator.
-
-
Field Summary
Fields Modifier and Type Field Description Expression
operand
Op
operator
-
Constructor Summary
Constructors Constructor Description UnaryExpression(Op operator, Expression operand)
-
Method Summary
-
Methods inherited from class org.jparsec.examples.common.ValueObject
equals, hashCode, toString
-
-
-
-
Field Detail
-
operand
public final Expression operand
-
operator
public final Op operator
-
-
Constructor Detail
-
UnaryExpression
public UnaryExpression(Op operator, Expression operand)
-
-