Class UnaryOperationExpr
- java.lang.Object
-
- com.google.api.generator.engine.ast.UnaryOperationExpr
-
- All Implemented Interfaces:
AstNode,Expr,OperationExpr
public abstract class UnaryOperationExpr extends Object implements OperationExpr
-
-
Constructor Summary
Constructors Constructor Description UnaryOperationExpr()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidaccept(AstNodeVisitor visitor)Writes the syntatically-correct Java code representation of this node.abstract Exprexpr()booleanisPostfixIncrement()static UnaryOperationExprlogicalNotWithExpr(Expr expr)abstract OperatorKindoperatorKind()static UnaryOperationExprpostfixIncrementWithExpr(Expr expr)abstract TypeNodetype()
-
-
-
Method Detail
-
expr
public abstract Expr expr()
-
operatorKind
public abstract OperatorKind operatorKind()
- Specified by:
operatorKindin interfaceOperationExpr
-
type
public abstract TypeNode type()
- Specified by:
typein interfaceExpr- Specified by:
typein interfaceOperationExpr
-
accept
public void accept(AstNodeVisitor visitor)
Description copied from interface:AstNodeWrites the syntatically-correct Java code representation of this node.
-
isPostfixIncrement
public boolean isPostfixIncrement()
-
postfixIncrementWithExpr
public static UnaryOperationExpr postfixIncrementWithExpr(Expr expr)
-
logicalNotWithExpr
public static UnaryOperationExpr logicalNotWithExpr(Expr expr)
-
-