Class LogicalOperationExpr
- java.lang.Object
-
- com.google.api.generator.engine.ast.LogicalOperationExpr
-
- All Implemented Interfaces:
AstNode,Expr,OperationExpr
public abstract class LogicalOperationExpr extends Object implements OperationExpr
-
-
Constructor Summary
Constructors Constructor Description LogicalOperationExpr()
-
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 ExprlhsExpr()static LogicalOperationExprlogicalAndWithExprs(Expr lhsExpr, Expr rhsExpr)static LogicalOperationExprlogicalOrWithExprs(Expr lhsExpr, Expr rhsExpr)abstract OperatorKindoperatorKind()abstract ExprrhsExpr()TypeNodetype()
-
-
-
Method Detail
-
lhsExpr
public abstract Expr lhsExpr()
-
rhsExpr
public abstract Expr rhsExpr()
-
operatorKind
public abstract OperatorKind operatorKind()
- Specified by:
operatorKindin interfaceOperationExpr
-
type
public 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.
-
logicalAndWithExprs
public static LogicalOperationExpr logicalAndWithExprs(Expr lhsExpr, Expr rhsExpr)
-
logicalOrWithExprs
public static LogicalOperationExpr logicalOrWithExprs(Expr lhsExpr, Expr rhsExpr)
-
-